Total and Average Marks

Easy
#math #statistics

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