mirror of
https://github.com/MeiK2333/river.git
synced 2025-11-04 14:49:40 +08:00
7 lines
116 B
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;
|
|
} |