Quick actions

cmd+k|ctrl+k

Navigation

Languages

18.6

Snippet info

Language

Python

Visibility

public

Author

mori

Created

2020-01-02T08:03:38Z

Updated

2020-01-02T08:03:57Z

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