n = int(input()) if n == 0: print('0') exit(0) res = '01' for i in range(n): res += '0' print(res)