We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- Python
- Math
- Integers Come In All Sizes
- Discussions
Integers Come In All Sizes
Integers Come In All Sizes
Sort by
recency
|
412 Discussions
|
Please Login in order to post a comment
a = int(input()), b = int(input()), c = int(input()), d = int(input())
print((a**b) + (c**d))
a=int(input()) b=int(input()) c=int(input()) d=int(input()) e=pow(a,b) f=pow(c,d) print(e+f)
a = int(input()) b = int(input()) c = int(input()) d = int(input())
print((a**b) + (c**d))
code in Python3: a=int(input()) b=int(input()) c=int(input()) d=int(input()) pow1=pow(a,b) pow2=pow(c,d) pow3=pow1+pow2 print(pow3)
a = int(input()) b = int(input()) c = int(input()) d = int(input())
print(a**b+c**d)