programming-examples/python/Algorithms/bigint.py

3 lines
45 B
Python
Raw Normal View History

2019-11-15 12:59:38 +01:00
a = 123456789
b = a * a * a * a // 3
print(b)