Run ID:102505

提交时间:2024-12-21 18:37:15

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int a,B,z,w; cin>>a>>B; w=B/a; z=w+w/3; cout<<z; return 0; }