import sys input = sys.stdin.readline N = int(input()) if N == 0: print('0') else: print('010' + '0' * (N - 1))