백준

[백준] 1008번 : A/B (Python) - 단계별로 풀어보기

by 윤 2023. 3. 22. 01:38
728x90

Python3 코드

A, B = input().split()
print(int(A)/int(B))