Python Program To Adds To Numbers Where The Numbers Enter By The User.
Python Program to adds two numbers where the numbers enter by the user.
Source Code
# This program adds two numbers
# Store input numbers from user
num1 = int(input('Enter first number: '))
num2 = int(input('Enter second number: '))
# Add two numbers
sum = num1 + num2
# Display the sum
print('The sum of ',num1,' and ',num2,' is ',sum)
Click here to run this code in online πππcompiler
Click here to get app for android.
π⤵️
➡️➡️➡️πππ
πππ⬅️⬅️⬅️
Output
Create by π °πππ ½ π Ίπππ ·ππ °π ·Send Feedback To ππ⬇️⬇️

Comments
Post a Comment