5 lines
No EOL
145 B
Python
5 lines
No EOL
145 B
Python
number = int(input('Enter a two digit number: '))
|
|
|
|
# Print the two digits of the number seperated by a space
|
|
|
|
print((number // 10),(number % 10)) |