ddd

kimseunghoo · February 21, 2026
#include <stdio.h>

int main() {
int a, b;
for(int i=0;i<5;i++){
    scanf("%d %d", &a, &b);
    printf("%d\n", a+b)
    

    }

}
Output

Comments

Please sign up or log in to contribute to the discussion.