#include <stdio.h>
int main ()
{
inta =7;
intb =8;
c =a+b;
scanf("%d is %d"&a,&b)
printf("%d is %d"c);
return 0;
}