n=int(input()) if n==0: print(1) exit() s='010' for i in range(n-1): s=s+'0' print(s)