From 659e1947e30f109a7d21db0e24d4a9b6afdfc3b2 Mon Sep 17 00:00:00 2001 From: Abhilash Date: Sun, 20 Apr 2025 20:27:20 +0530 Subject: [PATCH] Added simple calculator --- simple_calcu.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 simple_calcu.py diff --git a/simple_calcu.py b/simple_calcu.py new file mode 100644 index 00000000000..f31ca843ac8 --- /dev/null +++ b/simple_calcu.py @@ -0,0 +1,5 @@ +while True: + print(int(input("enter first number..")) + int(input("enter second number.."))) + q= input("press q to quit or press anu key to continue").lower() + if q==" q": + break \ No newline at end of file