Test

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdio.h>

int main()
{
int a,b,c;
char s[101];
// get a integer
scanf("%d", &a);
// get two integers separated half-width break
scanf("%d %d",&b,&c);
// get a string
scanf("%s",s);
// output
printf("%d %s\n",a+b+c,s);
return 0;
}

code