#include /* A program to add two numbers */ int main() { int x, y; int z; printf("Enter 2 numbers\n"); scanf("%d",&x); scanf("%d",&y); z = x + y ; printf("The sum of the numbers is %d\n", z); return 0; }