/*
#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;
// x = 100;
// x = x + 1000;
scanf("%d %d", &x, &y);
printf("%d+%d=%d", x, y,x+y);
return 0;
}
*/
/*
#include<stdio.h>
int main()
{
int n;
scanf("%d",&n);
printf("%d",n);
return 0;
}
*/
/*
#include<stdio.h>
int main()
{
char x;
scanf("%d",&x);
printf("%c",x);
return 0;
}
*/