def yukicoder1264_010(N): if N == 0: ans = '1' else: ans = '010' + '0' * (N - 1) return ans N = int(input()) print(yukicoder1264_010(N))