Total and Average Marks
Input: `a`, `b`, `c` (ints). Return: List `[total, average]`.
Example
Input: 70, 80, 90
Output: [240, 80.0]
Need a hint?
- Average is total divided by count
Run your code to see output
Input: `a`, `b`, `c` (ints). Return: List `[total, average]`.
Input: 70, 80, 90
Output: [240, 80.0]
Run your code to see output