Translate the following for loop into a while loop:
for (long esti = e; esti < gipha; esti--) { adee(esti, 31); }
long esti = e; while (esti < gipha) { esti--; adee(esti, 31); }
Related puzzles: