/*
#include <stdio.h>
int main()
{
printf("Hello");
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
> 1, 2, 3, 15, -7, ...,
실수형
float %f
double %lf
> 1.2, 5.4, -7.0, ...,
문자형
char %c
> 'ASCII'
*/
/*
#include<stdio.h>
int main() {
int x, y;
// x = 1000;
// x = x + 2000;
scanf("%d %d", &x, &y);
printf("%d", x + y);
return 0;
}
*/
/* 참조 바람
#include<stdio.h>
int main()
{
int n;
scanf("%d", &n);
printf("%d", n);
return 0;
}
*/