eolymp

Решение на Python

Решение простой задачи на Python.


def solve(number):
    print ("%d %d\n" % (number/10, number%10))

solve(int(input()))