diff --git a/main.cpp b/main.cpp index b47e260..5dce5bb 100644 --- a/main.cpp +++ b/main.cpp @@ -17,7 +17,9 @@ int main() { cout << "Proizvedenie of A and B is: " << proizv << endl; float delenie = a / b; - cout << "Delenie of A and B is " << delenie << endl; + cout << "Delenie of A and B is: " << delenie << endl; + + cout << "Maksimalnoe of A and B is: " << max(a, b) << endl; return 0; }