We are trying to write a program to detect if a car speed is over the limit. You are given two integers as input, the first integer is the car speed and the second one is the speed limit.
Write a program to print Over the speed limit if the car speed is above the speed limit or print No problems with it if it's not.
55 60
No problems with it
65 60
Over the speed limit
70 50
Over the speed limit
Test your solution here
when it passes, copy it and submit it here so your coach can grade it.