Source
import
std.
stdio
;
void
main
(
)
{
int
a
;
a
=
2
;
while
(
a
<
5
)
{
writeln
(
"a<=5 !"
)
;
a
++;
}
}