mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2025-11-04 14:49:58 +08:00
8 lines
115 B
C
8 lines
115 B
C
# include <stdio.h>
|
|
int main()
|
|
{
|
|
int a, b;
|
|
scanf("%d %d", &a, &b);
|
|
printf("%d", a + b);
|
|
return 0;
|
|
} |