// g++ A.cpp -std=c++14 -I . && ./a.out #include using namespace std; // #include // using namespace atcoder; // using mint = modint1000000007; // using mint = modint998244353; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define rep2(i, a, b) for (int i = a; i < (int)(b); i++) #define all(v) v.begin(), v.end() using ll = long long; const ll INF = 1e18; // 変数定義 int N, M, Q, a, b, c, d, e, x, y, T, total, cnt, ans; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); cin >> N; cout << "01"; rep(i, N) cout << '0'; cout << '\n'; return 0; }