n = int(input())
s = n // 10 % 10
g = n // 1 % 10
a = s / g
print("%.1f" % (a))
/**************************************************************
	Problem: 1607
	User: admin
	Language: Python
	Result: Accepted
	Time:101 ms
	Memory:34244 kb
****************************************************************/