woj-server/resource/runner/problem/example/std/ans.c

8 lines
127 B
C

#include<stdio.h>
int main() {
long long a, b;
scanf("%lld%lld", &a, &b);
printf("%lld\n", a + b);
return 0;
}