import dis

def ad(a, b):
    return (b*(a % b))% a

# バイトコードを逆アセンブル
dis.dis(ad)

print(ad(11,3))
print(ad(ad(11,3),4))
print(ad(ad(ad(11,3),4),5))

Embed on website

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