def main(): num=input() tmp="" for i in range(num/2): tmp=tmp+"1" print tmp main()