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