import sys def input(): return sys.stdin.readline().rstrip('\n') def main(): n = int(input()) print('01' + '0' * n) if __name__ == '__main__': main()