#include int main(void) { /* The simple program finds the sum of any two given integer numbers */ int Num1, Num2, Sum; scanf("%d %d", &Num1, &Num2); Sum = Num1 + Num2; printf("%d + %d = %d \n", Num1, Num2, Sum); return 0; }