program A, B : integer ; begin A := 5; while (A < 27) loop A := A + 2; end loop ; output A; input B; output A, B; end ;