#include <stdio.h>

int a;
int b;
 
int main(){
printf("Put two numbers: \n");
scanf("%d%d", &a , &b );
printf("The sum is %d ", a+b);
return 0;
}