2 3
5
1.
#include<stdio.h>
2.
int
main()
3.
{
4.
a,b;
5.
scanf
(
"%d %d"
,&a,&b);
6.
printf
"%d"
,a+b);
7.
return
0;
8.
}