Решите через repeat пожалуйста
Var a, b, h: integer; begin read(a, b, h); repeat write(a, ' '); a := a + h; until a > b; end.