mirror of
https://github.com/arthur-pbty/nsi.git
synced 2026-06-03 23:36:19 +02:00
5 lines
110 B
Python
5 lines
110 B
Python
from math import *
|
|
a = sqrt(4.6**3 - 15/16)
|
|
print(a)
|
|
if a == 9.818273779030608:
|
|
print("C'est bien égale") |