programming-examples/python/Algorithms/bigint.py
2019-11-15 12:59:38 +01:00

3 lines
45 B
Python

a = 123456789
b = a * a * a * a // 3
print(b)