Ответы
Ответ дал:
2
N = int(input()) #initial number
d1 = N // 100 # the first digit of initial number
x = (N - d1*100) * 10 + d1 # delete the first digit -> multiply by ten -> plus the first digit of init.num
print(x) #print result
Приложения:
Вас заинтересует
2 года назад
2 года назад
2 года назад
8 лет назад
8 лет назад
9 лет назад