Integers Come In All Sizes
-
Practice>Python>Math>Integers Come In All Sizeshackerrank.com 2019. 3. 7. 12:48
hackerrank.comIntegers Come In All SizesProblem link : https://www.hackerrank.com/challenges/python-integers-come-in-all-sizes/problemdifficulty : Easy Tipint(input())a**bThey are all we should know to solve it Solution a = int(input()) b = int(input()) c = int(input()) d = int(input()) print(a**b + c**d)