>>>x=input("Enter the first number")>>>y=input("Enter the second number") Now, its time for the output. >>>print(x+y); Or, >>>print(str(x+y)); Copy Both will give the same output. Though, result ofx+ywill be a number, while the result ofstr(x+y)will be a string. ← Prev Next →