g = 20
G = g
izaberu = 0
while g > 1:
    if g % 3 == 0:
        g -= 2
    elif g % 2 == 0:
        g += 1
        izaberu -= 1
    else:
        izaberu += 1
        g -= 1
    if izaberu > G:
        izaberu,G = G,izaberu
    
print(f'イザベルの数:{izaberu}')

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: