Run ID |
作者 |
问题 |
语言 |
测评结果 |
Time |
Memory |
代码长度 |
提交时间 |
90539 |
徐盛熠 |
02买铅笔 |
Python3 |
Wrong Answer |
37 MS |
3768 KB |
74 |
2024-09-15 14:30:35 |
Tests(1/10):
Code:
c=input().split()
a=c[0]
b=c[1]
b=int(b)
a=int(a)
print(a//b)
Run Info:
------Input------
24 12 88 38
------Answer-----
3
------Your output-----
2