import sys
readline=sys.stdin.readline
write=sys.stdout.write
from math import gcd as GCD
import math

N=int(readline())
ans="0"*N+"1"+"0"
print(ans)