From 114449e79159dcaa7d0db2fcb0409b8587b604ed Mon Sep 17 00:00:00 2001 From: HACKERmpython <112483403+HACKERmpython@users.noreply.github.com> Date: Wed, 31 Aug 2022 22:00:21 +0530 Subject: [PATCH] Update Add two numbers.py --- Add two numbers.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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))