Using python:

Given a two-digit integer, print its left digit (a tens digit) and then its right digit (a ones digit). Use the operator of integer division for obtaining the tens digit and the operator of taking the remainder for obtaining the ones digit.

Example input

79

Example output

7 9