Run ID:118532
提交时间:2025-05-04 15:31:41
#include<iostream> #include<cstdio> //scanf()\printf() #include<cstring> #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int n,k,s,y; cin>>n>>k; y=n; s=y/k+n; cout<<s; return 0; }