n = int(input()) if n == 0: print(0) else: n -= 1 x = "010" print(x + "0" * n)