10 lines
91 B
Python
10 lines
91 B
Python
x = int(input("x: "))
|
|
|
|
|
|
y = int(input("y: "))
|
|
|
|
|
|
z = x / y
|
|
|
|
print(f"{z:.50f}") #incantation
|