diff --git a/3-control-flow/15_the_cyclone.py b/3-control-flow/15_the_cyclone.py index ff000d0..a753545 100644 --- a/3-control-flow/15_the_cyclone.py +++ b/3-control-flow/15_the_cyclone.py @@ -5,10 +5,10 @@ credits = 10 with_taller_person = False -if height >= 200 and credits >= 10: +if height >= 137 and credits >= 10: print("Enjoy the ride!") -if height < 200: +if height < 137: if height < 100 or not with_taller_person: print("You're not tall enough for this ride yet.") elif height >= 100 and with_taller_person: