mirror of
https://github.com/Alexander-D-Karpov/scripts.git
synced 2025-01-22 22:54:08 +03:00
10 lines
114 B
Python
10 lines
114 B
Python
|
n1 = 5
|
||
|
n2 = 4
|
||
|
n3 = n1 + n2
|
||
|
n4 = n2 + n3
|
||
|
n5 = n3 + n4
|
||
|
|
||
|
n = n1 + n2 + n3 + n4 + n5
|
||
|
|
||
|
print(64 * n / 8 / 1024 / 1024)
|