diff --git a/main.cpp b/main.cpp index 08dfcf5..1b89798 100644 --- a/main.cpp +++ b/main.cpp @@ -12,6 +12,7 @@ int main(){ std::cout<< (first+second) << std::endl; std::cout<< "Subtraction: "<< first << "-" << second << "="; std::cout<< (first-second) << std::endl; - + std::cout<< "Multiplication: "<< first << "*" << second << "="; + std::cout<< (first*second) << std::endl; return 0; } \ No newline at end of file