Fix the Math
This program should compute the average of three numbers, but it uses the wrong operator. Fix it!
Expected output:
text
Average: 20.0
💡 Hints
?Hint 1
🔒Hint 2
🔒Hint 3
python
a = 10
b = 20
c = 30
average = a + b + c * 3
print("Average:", average)