#include <iostream>


int main() {
    int i=0;
    int h=0;
    int v=0;
     do {
        do {
            do {
                printf ("%d %d %d\n",i,h,v);
                v++;
            }while(v<=9);
            h++;
            v=0;
        }while(h<=9);
        i++;
        h=0;
    }while(i<=9);
    
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: