diff --git a/Source.cpp b/Source.cpp index 3764385..f3810f8 100644 --- a/Source.cpp +++ b/Source.cpp @@ -8,10 +8,19 @@ main() { << "A - B = " << a - b << '\n' << "A * B = " << a * b << '\n' << "A / B = " << a / b << '\n'; + if (a > b) { cout << a; } else { cout << b; } + + if (b < a) { + cout << b; + } + else { + cout << a; + } + } \ No newline at end of file