n = int(input()) result = '' if n == 0: result = '0' elif n >= 1: result = '010' for i in range(0, n-1): result = result + '0' print(result)