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