Coding_test(백준)/Python
[Python]백준 1008번: 입출력과 사칙연산 단계 - A/B
byeolsub
2023. 4. 16. 23:41

a,b = map(int, input().split())
print(a/b)