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