find the greatest among of the powers of the each other

 find the greatest among of the powers of the each other


    a=int(input())

    b=int(input())

    if((a**b)>(b**a)):

        print(a**b)

    else:

         print(b**a)

Comments