i am trying to make this go back to the condition 'start' if wrong data is put in (any number less than or equal to 2 for Dice and 1 for sides to go back to ask to be able to reenter the number of sides and dice
condition = "Start" 
while condition == "Start": 
Dice = int(input("Please select number of dice you would like to use between 1 and 5")) 
Sides = int(input("Please select number of sides on dice you would like to use")) 
if (Dice >= 2 and Sides >= 1):
    condition = "Start"
else: 
#... rest of code here
