본문 바로가기

인문학도 개발일지/1일1알고리즘

[알고리즘] 백준 1008 : A/B 파이썬 풀이

 

 

풀이
A, B = map(int, input("").split(" "))
print(A/B)