Integers Come In All Sizes

  • + 0 comments
    def func(a, b, c, d):
        result = a**b + c**d
        return result
        
    a = int(input())
    b = int(input())
    c = int(input())
    d = int(input())
    
    value = func(a, b, c, d)
    print(value)