diff --git a/Source.cpp b/Source.cpp index e3051d9..e04ba49 100644 --- a/Source.cpp +++ b/Source.cpp @@ -4,6 +4,7 @@ main() { cout << "Enter A and B: "; int a, b; cin >> a >> b; - cout << "A + B = " << a + b << '\n'; + cout << "A + B = " << a + b << '\n' + << "A - B = " << a - b << '\n'; } \ No newline at end of file