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