Answers for "Integers come in all sizes solution in python3"

0

Integers come in all sizes solution in python3

# Enter your code here. Read input from STDIN. Print output to STDOUT
a,b,c,d = (int(input()) for _ in range(4))
print (pow(a,b)+pow(c,d))
Posted by: Guest on April-22-2021

Python Answers by Framework

Browse Popular Code Answers by Language