/*
#include <stdio.h>
int main( )
{
printf("Hello");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("Hello World");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("Hello\nWorld");
return 0;
}
*/
/*
#include <stdio.h>
int main ()
{
printf("\'Hello\'");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("\"Hello World\"");
return 0;
}
*/
/*
#include <stdio.h>
int main ()
{
printf("\"!@#$%^&*()\"");
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
printf("\"C:\\Download\\hello.cpp\"");
return 0;
}
*/
/*
정수
int %d
long long int %lld
실수
float %f
double %lf
문자
char %c
*/
//
//#include<stdio.h>
//
//int main() {
// int x, y, apple;
//
// x = 10;
// x = x + 50;
//
// printf("%d %d %d", x, x+x, x+x+x);
//}
/*
#include<stdio.h>
int main() {
int x, y;
scanf("%d %d", &x, &y);
printf("%d", x+y);
}
*/
/*
#include<stdio.h>
int main(){
int t;
scanf("%d" , &t);
printf("%d" , t );
return 0;
}
*/
/*
#include<stdio.h>
int main(){
char u;
scanf("%c", &u);
printf("%c", u);
return 0;
}
*/



