#include <iostream>

using namespace std;

int main()
{
    freopen("DATA5.txt","r",stdin);
    freopen("OUT5.txt","w",stdout);
    
    
    for (int i=0; i< 5;i++)
    {
        cout << 2 << endl;
    }
    
    return(0);
}

