diff --git a/Add two numbers.py b/Add two numbers.py index 3d62ec1..17a8ba8 100644 --- a/Add two numbers.py +++ b/Add two numbers.py @@ -1,6 +1,4 @@ #WAP to add two numbers taken by the user -print("Enter a number") -a = input() -print("Enter another number") -b = input() +a = input("Enter a number") +b = input("Enter another number") print("Sum of these two numbers is :",int(a) + int(b))