We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37e87aa commit db82b17Copy full SHA for db82b17
Integers comes in all sizes.py
@@ -0,0 +1,5 @@
1
+first_num = int(input())
2
+first_num_power = int(input())
3
+secound_num = int(input())
4
+secound_num_power = int(input())
5
+print(pow(first_num,first_num_power)+ pow(secound_num,secound_num_power))
0 commit comments