A store manager hypothesizes that the average number of pages a person copies on the store’s copy machine is at least 9. A sample of customers’ orders selected randomly reveals the following:
11
10
10
9
15
20
12
15
12
3
13
20
2
3
16
3
4
19
13
21
3
3
5
11
8
16
10
17
5
2
5
19
from sys import stdin
numbers = [int(i) for i in stdin.read().split()]
print(f"The average number of pages a person copies on the store’s copy machine is {int(sum(numbers) / len(numbers))}.")
Comments
Leave a comment