Integers Come In All Sizes

  • + 0 comments

    For Python3 Platform

    This problem demonstrates one of the uniqueness of python compared to other languages

    a = int(input())
    b = int(input())
    c = int(input())
    d = int(input())
    
    print(pow(a, b) + pow(c, d))