From f809560bcde486e1b6353ed533cbf04336b70fc9 Mon Sep 17 00:00:00 2001 From: DinhThienTuTran Date: Wed, 11 Sep 2024 11:42:17 -0700 Subject: [PATCH] Add multiplecation algorithm, fixes #1 --- main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.cpp b/main.cpp index 08dfcf5..e181523 100644 --- a/main.cpp +++ b/main.cpp @@ -12,6 +12,8 @@ int main(){ std::cout<< (first+second) << std::endl; std::cout<< "Subtraction: "<< first << "-" << second << "="; std::cout<< (first-second) << std::endl; + std::cout<< "Multiplecation: "<< first << "*" << second << "="; + std::cout<< (first*second) << std::endl; return 0; } \ No newline at end of file