#include int main() { int i1{ }; int i2{ }; std::cout << "Enter a Integer: "; std::cin >> i1; std::cout << "Enter another Integer: "; std::cin >> i2; std::cout << i1 << " + " << i2 << " is " << i1 + i2 << "\n"; std::cout << i1 << " - " << i2 << " is " << i1 - i2 << "\n"; return 0; }