From f8e44977609d67332b43d6778d57e032d80d9f8b Mon Sep 17 00:00:00 2001 From: anusuya-2006 Date: Sun, 26 Oct 2025 13:21:08 +0530 Subject: [PATCH] Update Arithmetic.py --- Arithmetic.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Arithmetic.py b/Arithmetic.py index 592e81a..3fc38a5 100644 --- a/Arithmetic.py +++ b/Arithmetic.py @@ -1,4 +1,4 @@ -#Arithmetic operator +Arithmetic operator: a=int(input("Give the A value :")) b=int(input("Give the B value:")) print("Addition :",a+b) @@ -7,3 +7,4 @@ print("Divition :",a/b) print("Floor Divition :",a//b) print(f"Exponential :{a**b}") +