測試執行那邊可以過,但送出沒有一個過的了,拜託了各位!!!
#include <iostream>
using namespace std;
int main(int argc, char** argv)
{
long long n, m,count=1;
while (cin >> n >> m)
{
count = 1;
while (true)
{
n /= 2;
if (n < m)
break;
count *= 2;
}
cout << count<<endl ;
}
return 0;
}