← Back to List

1008번: A/B ↗

Solutions

Python 3
51 B | 51 chars
a,b=input().split(" ")
a=int(a)
b=int(b)
print(a/b)