speed = int( input( "How fast did the car that go pulled over go? " ) ) if speed < 51 : print("Nah, you're all good") elif speed < 56 : print("Woah buddy, be careful. no faster that that!") elif speed <= 60 : print("Ermm, that will be a $200 fine sir") elif speed >= 61 : print("❌$1000 fine buckaroo!") # Made by Tristan, only for the eyes of Mr, Ronowicz... ( and me :P)