This app is only for screens wider than 800px.
Subtract

Given two numbers a and b, return a minus b.


Example 1:
Input:6, 5
Output:1
Explanation:Because 6 minus 5 is 1, we return 1.
Example 2:
Input:-5, -5
Output:0
Example 3:
Input:-10, 8
Output:-18