int main(){
    int i=0;
    while(i<54){
        printf("%d \n",i);
        i+=1;
    }
    return 0;
}