import java.util.*; import java.io.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); PrintWriter ou = new PrintWriter(System.out); int n = Integer.parseInt(sc.next()); ou.print("01"); for(int i = 0 ; i < n ; i++) ou.print(0); ou.println(); ou.flush(); sc.close(); } }