s = input() for i in range(len(s)): if s[i] == "/": host = i a = int(s[:host]) b = int(s[host+1:]) print(a/b)