From ffbb016de1f4a45d77109c168a1cc444dfebafe2 Mon Sep 17 00:00:00 2001 From: Paulina Rosales Date: Mon, 9 Sep 2024 11:44:09 -0700 Subject: [PATCH] Added Multiplication Example, Closes #1 --- main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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