#include <iostream>
using namespace std;
unsigned long next_id() {
unsigned long id=800000000UL;
return ++id;
}
int main() {
cout << next_id() << '\n';
cout << next_id() << '\n';
cout << next_id() << '\n';
}
id static outside of next_id()
id static inside of next_id()