int main(){
    int i,j;
    
    for(i=0,j=0;i<5,j<3;i++,j++){
        printf("%d %d \n",i,j);
    }
    return 0;
}