Code Scramble for Race Determination Program

Arrange the code in the right hand box so that it reads in two times (in seconds) for the runner in Lane 1 and then the runner in Lane 2. It should then determine who won and by how much. Alternatively, if they tie, it should provide a message saying so. Below are example runs:

Enter the race time for runner in Lane 1: 45
Enter the race time for the runner in Lane 2: 46
The runner in Lane 1 won by 1 seconds!
	  
Enter the race time for runner in Lane 1: 56
Enter the race time for the runner in Lane 2: 43
The runner in Lane 2 won by 13 seconds!
	  
Enter the race time for runner in Lane 1: 49
Enter the race time for the runner in Lane 2: 49
It's a tie!
>>> 
	  

Remember to pay attention to indentation!

New instance Get feedback