欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

二叉树

程序员文章站 2022-06-15 23:46:54
...

二叉树二叉树

#include<bits/stdc++.h>
using namespace std;

int main ()
{
        int m,n;
    cin>>m>>n;

    while(m>0&&n>0)
    {
        if(m>n) m=m/2;
        else if(m<n) n=n/2;
        else
        {
            cout<<n<<endl;
            break;
        }

    }

    return 0;
}