ACMSGURU 112 - a^b-b^a
a^b-b^a
Problem Description
You are given natural numbers a and b. Find a^b-b^a.
Input
Input contains numbers a and b (1≤a,b≤100).
Output
Write answer to output.
Sample Input
2 3
Sample Output
-1
Solution
1 | if __name__ == '__main__': |