提交时间:2024-04-16 20:50:00

运行 ID: 45592

#include<bits/stdc++.h> using namespace std; int main(){ int n,k; cin>>n>>k; cout<<n/k+n%k; return 0; }