n = int(input()) s = "01" for i in range(n): s += "0" print(s)