/*
#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
^----^
{ ' ' )
( (00) )
*/
#include<stdio.h>
int main() {
int x, y; // 정수형변수 2개
// x = 10;
// y = 20;
scanf("%d %d", &x, &y); // &: 주소(address)
printf("%d\n", x+y);
printf("%d", x);
}