#include using namespace std; #ifdef LOCAL #include #else #define debug(...) void() #endif int main() { ios::sync_with_stdio(false); cin.tie(0); int n; cin >> n; cout << "01"; while (n--) cout << '0'; cout << '\n'; return 0; }