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
0
Answer:
In python
a=input("enter the 1St no.")
b=input("enter the 2ND no.")
print(a,b)
Similar questions