#include <iostream>

int main() {
    for (int i = 0; i < 4; ++i)
        std::cout << i*1000000000 << std::endl;
	return 0;
}