3 条题解
- 1
信息
- ID
- 10
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 1
- 标签
- 递交数
- 281
- 已通过
- 130
- 上传者
#include<bits/stdc++.h> using namespace std; int main(){ int a,b; cin>>a>>b; cout<<int(a/b)<<" "<<a%b; return 0; }
#include<bits/stdc++.h>
using namespace std;
int main(){
int a,b;
cin>>a>>b;
cout<<int(a/b)<<" "<<a%b;
return 0;
}
制作不易,点个赞再拿走嘛