Hello World

1
2
3
4
5
6
7
8
9
#include <cstdio>

int main()
{
int x, y;
scanf("%d%d", &x, &y);
printf("%d\n", x + y);
return 0;
}