백준 1008번 A/B 파이썬
2022.03.07 15:43
백준 1008번 A/B 파이썬 코드이다.
a, b = map(int, input().split())
print(a / b)
A와 B를 input으로 받아서, 나눈 값을 출력했다.