diff --git a/main.cpp b/main.cpp index 1d79c77..82ec726 100644 --- a/main.cpp +++ b/main.cpp @@ -1,11 +1,15 @@ #include using namespace std; +// you may type whatever you want int main() { cout << "Enter A and B: "; int a, b; cin >> a >> b; +cout << a + b; +cout << a * b; +return 0; }