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