1
0
LearningCPP/main.cpp
2022-08-13 00:22:07 +01:00

15 lines
346 B
C++

#include <iostream>
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;
}