#include <iostream>
int main(int x=1) {

  while (x <= 1000 && std::cout << x++ << std::endl) {}
 }
