#include <iostream>
using namespace std;
int main() {
    int i=0;
    while(i<10){
        cout<<i<<end;
        i++;
    }
    
    return 0;
}