/*
#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;
}
*/
/*
정수 1, 2, 3, -1, -2, -3
int %d
long long int %lld
실수 1.7, -3.14
float %f
double %lf
문자 A, b, c, #
char %c
*/
// [ 사과/귤/탕수육 ]은 맛있다.
//
/*
#include<stdio.h>
int main() {
int box1, box2;
// box1 = 100;
// box2 = 200;
scanf("%d %d", &box1, &box2);
printf("%d %d %d", box1, box2, box1+box2);
*/
/*
int main()
{
int n;
scanf("%d", &n);
printf("%d", n);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
char p;
scanf("%c",&p);
printf("%c",p);
return 0;
}
*/
#include <stdio.h>
int main()
{
}