본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#10 백준 파이썬 [1008] A/B

#10 [1008] A/B

https://www.acmicpc.net/problem/1008



#10 [1008] Solution

a,b= map(int, input().split())
print('%0.9f'%(a/b))