Solution in c++
#include <iostream>
using namespace std;
int xp,np,sol;
int main(){
cin>>xp>>np;
while((xp>=2 && np>=1) || (xp>=1 && np>=2))
{
xp--;
np--;
sol++;
if(xp>=np)xp--;
else np--;
}
cout<<sol;
}
0 التعليقات:
إرسال تعليق