Integers Come In All Sizes

  • + 0 comments

    For Python3 Platform

    Other than exponentiation operator(**), pow function also can be used.

    a = int(input())
    b = int(input())
    c = int(input())
    d = int(input())
    
    print(a**b + c**d)