from random import randint def dice(x): result = randint(1, 16) return(result) x = input("press Enter: ") if x == "": dice(x) prin