#include using namespace std; template using vec = vector; template using vvec = vector>; int main() { int n; cin >> n; cout << (string(n, '0') + "10") << endl; }