ChamplainTechJournals/python-csi160/week03/Week-3Practice-Problems/part1.py
2025-04-19 23:42:08 -04:00

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))