#include using namespace std; int main () { int x, y, z; cout << "Input 2 integer values:" << endl; cin >> x >> y; z = x + y; cout << "Sum is " << z << endl; return 0; }