You are viewing a single comment's thread. Return to all 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)
Seems like cookies are disabled on this browser, please enable them to open this website
Integers Come In All Sizes
You are viewing a single comment's thread. Return to all comments →