From 7d84600555adb67dcef66455219c21f4f5298358 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mert=20G=C3=B6r?= Date: Fri, 25 Aug 2023 01:18:00 +0300 Subject: [PATCH] removed old source code written by C++ Primer Book Authors --- io.library.cpp | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 io.library.cpp diff --git a/io.library.cpp b/io.library.cpp deleted file mode 100644 index 2636e33..0000000 --- a/io.library.cpp +++ /dev/null @@ -1,12 +0,0 @@ -#include - -int main() -{ - std::cout << "Enter two numbers:" << std::endl; - int v1 = 0, v2 = 0; - std::cin >> v1 >> v2; - std::cout << "The sum of " << v1 << " and " << v2 - << " is " << v1 + v2 << std::endl; - - return 0; -}