Two Numbers Operations

Easy
#math #arithmetic

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