5 lines
84 B
Python
5 lines
84 B
Python
a, b = map(int,input().split())
|
|
print(a/b)
|
|
|
|
# a,_,b = input()
|
|
# print(int(a)/int(b)) |