1
0
LearningCPP/main.cpp

15 lines
346 B
C++
Raw Normal View History

2022-08-12 14:59:08 +01:00
#include <iostream>
int main()
{
2022-08-13 00:22:07 +01:00
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";
2022-08-12 14:59:08 +01:00
return 0;
}