Quick actions

cmd+k|ctrl+k

Navigation

Languages

18.6_try

Snippet info

Language

Python

Visibility

public

Author

mori

Created

2020-01-02T08:07:07Z

Updated

2020-01-02T08:07:07Z

start, stop = map(int, input().split())

i = start

while True:
    if 1<=i<=200 and 10<=stop<=200 and i<=stop:
        if i%10==3:
            i+=1
            continue
        if i>stop:
            break
    
    print(i, end=' ')
    i += 1
INFO