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