N = int(input()) if N == 0: exit(print(0)) ans = ['010'] + ['0']*(N - 1) print(''.join(ans))