Linaro Git Browser
Code Review
Sign In
review.linaro.org
/
lite
/
micropython
/
d59c2e5e45389d4d280ccec52f88bc469b15a469
/
.
/
tests
/
basics
/
int_big_div.py
blob: 8dacf495db291bd98feb7975d8957b100e7c78eb [
file
] [
log
] [
blame
]
for
lhs
in
(
1000000000000000000000000
,
10000000000100000000000000
,
10012003400000000000000007
,
12349083434598210349871029923874109871234789
):
for
rhs
in
range
(
1
,
555
):
print
(
lhs
//
rhs
)