백준/기초

[백준][입출력 및 사칙연산] 1008번 A/B

Snowboarder 2022. 2. 15. 17:10

문제풀이

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