number = int(input('Enter a two digit number: ')) # Print the two digits of the number seperated by a space print((number // 10),(number % 10))