문제

링크

풀이

// 75점 / 100점
#include <stdio.h>
 
int main(void) {
	long long a, b;
 
	scanf("%lld %lld", &a, &b);
	printf("%lld", a + b);
	return 0;
}