Rohyoohyun / C

0 stars 0 forks source link

10951 A+B -4 #15

Open Rohyoohyun opened 3 months ago

Rohyoohyun commented 3 months ago

include

int main(){ int a, b; while(scanf("%d %d", &a, &b) != -1) printf("%d \n", a + b); return 0; }