应该是正经题解 | 取模
2025-02-03 08:43:52
发布于:北京
3阅读
0回复
0点赞
中文
用%
取模即可。
a,b = map(int,input().split())
print(a%b)
English
Use '%' to take the mold.
a,b = map(int,input().split())
print(a%b)
日本語
``%`で型を取ればいい。
a,b = map(int,input().split())
print(a%b)
这里空空如也
有帮助,赞一个