Stick together

Report a typo

You are given a list of numbers. Print them out together.

Tip: Set an empty line to one of the print() arguments, either to sep or end. There is a solution with each of these options.

Sample Input 1:

1 2 3 4 5 6 7 8 9

Sample Output 1:

123456789
Write a program in Python 3
numbers = [int(x) for x in input().split()]
# print all numbers without spaces
___

Create a free account to access the full topic