to print 2 numbers and their sum
Answers
Answered by
1
In Python,
a=input(float('Enter your number : '))
b=input(float('Enter your number : '))
c=a+b
print("The sum of two number is : ,c)
Input.
a = 2
b = 4
Output.
The sum of two number is 6
Answered by
0
Answer:
Input.
a = 2
b = 4
Output.
6
Similar questions