ungleich-learning-circle/youngjin.han/python-the-hard-way/ex3-2.py

5 lines
75 B
Python
Raw Normal View History

2020-05-18 14:32:23 +00:00
print((2**8) - 1)
print((2**16) - 1)
print((2**32) - 1)
print((2**64) - 1)