N=int(input()) if N==0: print("1") elif N==1: print("010") else: ans="01"+"0"*N+"10" print(ans)