U588066 Fast Write
题目背景
## **注意:请检查你的 `write` 函数能不能输出 `0` 和 `-2147483648`。**
如果你想要练习,就请不要尝试使用 `printf/cout` 草过去。
[IO 优化](https://www.luogu.com.cn/article/2pbig65w)
题目描述
输入两个数,$n$ 和 $seed$,并运行以下代码:
```cpp
#include
typedef int i32;
inline void next_integer(i32& x) {
x ^= x > 17;
x ^= x
输入格式
一行,两个整数,$n$ 和 $seed$。
输出格式
$(n + 1)$ 行,一共 $(n + 2)$ 个整数。
说明/提示
对于 $50\%$ 的数据,$0\le n \le 10^3,seed\in[-2^{31},2^{31})\cap \Z$
对于 $100\%$ 的数据,$0\le n \le 10^7,seed\in[-2^{31},2^{31})\cap \Z$