提交时间:2020-07-26 20:50:30

运行 ID: 5075

#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d; cin>>a>>b; c=a%b; d=a/b; cout<<c<<d; }