A+B for Input-Output Practice (VII)

#include <stdio.h> int main() {     int a,b;     while(scanf("%d %d", &a, &b) != EOF)     {         printf("%d\n", a + b);         printf("\n");     }     return 0; }
相關文章
相關標籤/搜索