Then play with variables

#include<stdio.h>
Int main()
{
int a,b;
printf("Enter a and b");
scanf("%d %d");
c=a+b;
Printf("%d",c);
return 0;
}

Comments