s = input() fir = s[:s.index('/')] sec = s[s.index('/') + 1:] ans = int(fir) / int(sec) print(f"{ans:.5f}")