The most common value

Report a typo

You found a very interesting program on the Internet. It is a randomizer! You decided to test it by running it five times and writing each integer down. There are five random integers in the input, one per line. Use all of them to make a list (dataset), then print its mode.

Sample Input 1:

5
7
3
2
7

Sample Output 1:

7
Write a program in Python 3
import statistics

a = int(input())
b = int(input())
c = int(input())
d = int(input())
e = int(input())
___

Create a free account to access the full topic