#
# µû¶óÇÏ¸ç ¹è¿ì´Â ÆÄÀ̽ã°ú µ¥ÀÌÅÍ°úÇÐ(»ý´ÉÃâÆÇ»ç 2020)
# LAB 9-4 1ȸ¿ë Æнº¿öµå¸¦ ¸¸µé¾î º¸ÀÚ, 231ÂÊ
#
import random
n_digits = int(input('¸î ÀÚ¸®ÀÇ ºñ¹Ð¹øÈ£¸¦ ¿øÇϽʴϱî? '))
otp = ''
for i in range(n_digits) :
otp += str(random.randrange(0, 10))
print(otp)