#include <bits/stdc++.h>
using namespace std;

int main()
{
  int n;
  cin >> n;
  string s(n + 2, '0');
  s[1] = '1';
  cout << s << "\n";
}