1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
#include <bits/stdc++.h>
// #include <ext/pb_ds/assoc_container.hpp>
// #include <ext/pb_ds/tree_policy.hpp>
// #include <ext/rope>

using namespace std;
// using namespace __gnu_pbds;

typedef long long ll;
typedef unsigned long long ull;
typedef unsigned int uint;
typedef long double ld;

template <class T>

using VV = vector<vector<T>>;

using VI = vector<int>;
using VVI = vector<vector<int>>;

using VL = vector<long long>;
using VVL = vector<vector<long long>>;

using VC = vector<char>;
using VVC = vector<vector<char>>;

using VB = vector<bool>;
using VVB = vector<vector<bool>>;

using VD = vector<double>;
using VVD = vector<vector<double>>;

using PII = pair<int, int>;
using PLL = pair<long long, long long>;
using PIL = pair<int, long long>;
using PLI = pair<long long, int>;

using VPII = vector<pair<int, int>>;
using VPLL = vector<pair<long long, long long>>;

#define LINE '\n'
#define SPACE ' '
#define PB push_back
#define FOR(i, a, b) for (int i = (a); i < (int(b)); i++)
#define FORE(i, a, b) for (int i = (a); i <= (int)((b)); i++)
#define ALL(x) x.begin(), x.end()
#define RALL(x) x.rbegin(), x.rend()
#define sq(a) ((a) * (a))
#define sz(x) ((int)x.size())

#define fastio()                      \
    ios_base::sync_with_stdio(false); \
    cin.tie(nullptr);                 \
    cout.tie(nullptr)
#define debug(x) cerr << #x << " = " << x << endl;

const int INF = 1e9;

const int MAX_N = 5e5 + 3;

const int r = 3;

void solve()
{
    string s;
    s += "10";
    FOR(i, 0, 98) s += '0';
    s += LINE;

    s += "01";
    FOR(i, 0, 98) s += '1';
    s += LINE;

    FOR(i, 0, 98) s += '0';
    s += "01";
    s += LINE;

 

    // FOR(i, 0, 98) s += '0';
    // s += "01";
    // s += LINE;



    s += "10";
    FOR(i, 0, 98) s += '0';
    s += LINE;

    string s2;
    

    s2 += "00";
    FOR(i, 0, 97) s2 += '0';
    s2 += "1";
    s2 += LINE;


    s2 += "10";
    FOR(i, 0, 98) s2 += '0';
    s2 += LINE;




    // FOR(i, 0, 98) s2 += '0';
    // s2 += "01";
    // s2 += LINE;



    cout << s;
    FOR(rep, 0, (100-4)/2) {
        cout << s2;
    }

    FOR(i, 0, (100-4) % 2) {
        FOR(j, 0, 100) cout << 0;
        cout << LINE;
    }
}

int main()
{
    fastio();

    int t = 1;
    //cin >> t;

    while (t--)
        solve();
}