preform a simple piece of basic python code
Here is the code to print sum of two given numbers:
Code for copying
a = int (input ("Enter the first element: "))
b=int(input("Enter the second element: "))
print("The sum of two numbers is : {}".format(a+b))
==============
code snippet
a = int (input ("Enter the first element: "))
b=int(input("Enter the second element: "))
print("The sum of two numbers is : {}".format(a+b))
Get Answers For Free
Most questions answered within 1 hours.