Skip to content
Snippets Groups Projects
3.py 180 B
Newer Older
hacker717's avatar
hacker717 committed
from itertools import count
st, en, sp = [float(i) for i in input().split()]

for value in count(st, sp):
    if value <= en:
        print(round(value, 2))
    else:
        break