#include <stdio.h>
int main()
{
    int a;
    int b;
    int c;
 c=a+b;
printf("Enter the number a:\n",a);
scanf("%d",&a);
printf("Enter the number b:\n",b);
scanf("%d",&b);
printf("The sum of the two numbers is:%d",c);
return 0;
}