The dice game

Report a typo

It's impossible not to know the dice game. Please, write a program that will imitate a roll of one of the dice with the help of an appropriate random function.

Thus, your task is just to generate one integer in the range from 1 to 6 and print it.

Write a program in Python 3
import random


# this line is needed for us to check the results, don't modify it please
random.seed(int(input()))

# use a function from the random module in the next line
print(...)
___

Create a free account to access the full topic