您好,当你需要读入两个整数时,请使用如下代码:
```python
a,b=map(int,input().split())
```
by only_a_speaker @ 2023-11-02 22:12:57
@[STYYS35ZYZ](/user/1106358) 你读入的是一个列表,而不是数字。还是老老实实用这个代码吧:
```python
a = input().split()
s1 = int(a[0])
s2 = int(a[1])
print(s1//s2,s1%s2)
```
by 511_Juruo_wyk @ 2023-11-02 22:22:48
@[STYYS35ZYZ](/user/1106358)
可以使用
a=list(map(int,input().split()))
print(a[0]//a[1],a[0]%a[1])
by w1156626019 @ 2023-11-18 16:39:51
```
#include<iostream>
using namespace std;
int main() {
int a,b;
cin>>a>>b;
cout<<a/b<<" "<<a%b;
return 0;
}
AC码
没事加一下
```
by Rb3f @ 2024-07-20 16:16:18
https://www.luogu.com.cn/team/83419#member
by Rb3f @ 2024-07-20 16:16:43