Computer Science, asked by kgauravkumar2010, 2 days ago

to print 2 numbers and their sum

Answers

Answered by truptidenish5
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 humza1syed
0

Answer:

Input.

a = 2

b = 4

Output.

6

Similar questions