#include <iostream>
#include <vector>
#include <string>
using namespace std;
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N;
    cin >> N;
    if(N == 0){
        cout << "1" << endl;
        return 0;
    }
    string S = "010";
    for(int i = 0; i < N - 1; i++) S += "0";
    cout << S << endl;
}