Computer Science, asked by ddellapia, 8 months ago

write a program that asks the user to enter two numbers and prints all the numbers on one line sperated by commas

Answers

Answered by trudrakshi3
0

Answer:

In python

a=input("enter the 1St no.")

b=input("enter the 2ND no.")

print(a,b)

Similar questions