Run ID:1933

提交时间:2023-12-02 17:07:14

#include<iostream> using namespace std; int main() { long long a,b; cin>>a>>b; if(a%b==0) cout<<a/b; else cout<<a/b<<" "<<a%b; return 0; }