module pind.samples.ja.arithmetic.arithmetic_solution_4; import std.stdio; void main() { int value = 1; while (value <= 10) { if (value != 7) { writeln(value); } ++value; } }