C
c
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>
int main()
{a,b,c;
printf("Enter two numbers separated by space bar\n")
scanf("%d%d",&a,&b);
c = a+b
print("Sum of the Entered numbers = %d\n",c);
return 0;
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run