program A, B, C : integer ; begin A := 5; while (A < 27) loop A := A + 2 ; end loop ; output A ; input B ; output A, B ; if ( A > B ) then C := A + B ; else C := A * B - 5 ; end if ; end ;