这段代码怎么在简化一点?求指点
#include<iostream> #include<iomanip> #include<cmath> using namespace std; int main() { long long a , b , c , d; cin >> a >> b; c = a/b; d = a%b; cout << c << ' ' << d; return 0; }