/*
#include <stdio.h>
int main()
{
printf("선생님이 잘생기셨다.\n(뻥임)");
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("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;
}
*/
/*
#include <stdio.h>
int main()
{
printf("선생님이 마크 광 인것 같다...\n지금이라도 도망칠까?\n하지만 이미늦었다...\n2023/12/27/수요일 4시 31분...");
return 0;
}
*/
/*
정수형:
int %d (4): -2147483648 ~ +2147483647
long long int %lld (8):
실수형
float %f
double %lf
문자형
char %c
*/
/*
#include<stdio.h>
int main() {
int watermelon, apple;
// watermelon = 100;
// apple = 140;
scanf("%d %d", &watermelon, &apple);
printf("%d %d %d", watermelon, apple, watermelon + apple);
return 0;
}
*/
/*
#include<stdio.h>
int main()
{
int teacher;
//teacher =1004
scanf("%d" ,&teacher);
printf("%d" ,teacher);
return 0;
}
*/
/*
#include <stdio.h>
int main()
{
char a;
scanf("%c" ,&a);
printf("%c" ,a);
return 0;
}
*/