@ -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;
}