import random
while True:print(''' 1. roll the dice 2. exit ''')
user = int(input("what you want to do\n"))
if user==1:
number = random.randint(1,6)
print(number)
else:
break
import random
while True:1. Write a program to find the largest element among three Numbers. num1 = int(input("Enter the first number: ")) num2 = int(input...