#include<bits/stdc++.h> using namespace std; int main(){ int a=1; while(a<=100){ cout<<a<<endl; a++; } } /************************************************************** Problem: 1881 User: lvrenxiang Language: C++ Result: Accepted Time:8 ms Memory:2072 kb ****************************************************************/