# coding: utf-8 # Your code here! N=int(input()) A=[0 for i in range(N+2)] A[-2]=1 A=list(map(str,A)) print("".join(A))