Challenge - #61 - Integer Comes in All Sizes
# Enter your code here. Read input from STDIN. Print output to STDOUT
a = int(input())
b = int(input())
c = int(input())
d = int(input())
print((a**b)+ (c**d))
# Enter your code here. Read input from STDIN. Print output to STDOUT
Comments
Post a Comment