from sys import stdin def main(): input = lambda: stdin.readline()[:-1] N = int(input()) ans = "01" + N * "0" print(ans) main()