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