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}") +