Two Numbers Operations
Input: `a` (int), `b` (int). Return: List `[sum, difference, product]`.
Example
Input: 5, 3
Output: [8, 2, 15]
Need a hint?
- Return a list [a+b, a-b, a*b]
Run your code to see output
Input: `a` (int), `b` (int). Return: List `[sum, difference, product]`.
Input: 5, 3
Output: [8, 2, 15]
Run your code to see output