n = int(input())
x = n % 100 # 2 цифры
x *= 10 # умножить на 10
print(x)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
n = int(input())
x = n % 100 # 2 цифры
x *= 10 # умножить на 10
print(x)