integers come in all sizes solution in python3

Solutions on MaxInterview for integers come in all sizes solution in python3 by the best coders in the world

showing results for - "integers come in all sizes solution in python3"
Maily
22 Nov 2019
1# Enter your code here. Read input from STDIN. Print output to STDOUT
2a,b,c,d = (int(input()) for _ in range(4))
3print (pow(a,b)+pow(c,d))
similar questions