Integers Come In All Sizes

  • + 0 comments
    import math
    
    a = int(input())
    b = int(input())
    c = int(input())
    d = int(input())
    ab = (pow(a,b))
    cd = (pow(c,d))
    total = ab + cd
    print(total)