7 lines
79 B
D
7 lines
79 B
D
import std.stdio;
|
|
|
|
void main() {
|
|
auto Δ = 1;
|
|
Δ++;
|
|
writeln(Δ);
|
|
}
|