#include using namespace std; #define REP(i,n) for(int i=0; i<(int)(n); i++) int main() { ios_base::sync_with_stdio(0); cin.tie(0); int n; cin >> n; if (n == 0) { cout << "1" << endl; } else { string ret = "010"; REP (i, n-1) ret += '0'; cout << ret << endl; } return 0; }