#include int main(void) { // initialization int i1, i2; // get input from user scanf("%i %i", &i1, &i2); // print answer!! printf("The sum is %i and the difference is %i.", i1 + i2, i1 - i2); }