8 lines
75 B
Python
8 lines
75 B
Python
import math
|
|
|
|
math.pi = 123321
|
|
pi = math.pi
|
|
d = math.sqrt(2)
|
|
|
|
print(pi * d)
|