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