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