2024-03-07 23:42:52 +09:00

5 lines
84 B
Python

a, b = map(int,input().split())
print(a/b)
# a,_,b = input()
# print(int(a)/int(b))