7 lines
100 B
D
7 lines
100 B
D
import std.stdio, std.bigint;
|
|
|
|
void main() {
|
|
BigInt i;
|
|
while (true)
|
|
writeln(++i);
|
|
}
|