#include <iostream>

using namespace std;

int main(){

    int t = 0;

    while (t / 2)
    {
        cout<<t<<endl;
    }
    
}