river/example/c/1001/main.c

7 lines
116 B
C

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