summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/int_big_div.py
blob: 8dacf495db291bd98feb7975d8957b100e7c78eb (plain) (blame)
1
2
3
for lhs in (1000000000000000000000000, 10000000000100000000000000, 10012003400000000000000007, 12349083434598210349871029923874109871234789):
    for rhs in range(1, 555):
        print(lhs // rhs)