Rohyoohyun / C

0 stars 0 forks source link

10952 A+B -5 #14

Open Rohyoohyun opened 3 months ago

Rohyoohyun commented 3 months ago

include

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