Imagine that your friend wants to bake a huge apple pie and he needs a lot of apples. He goes to the market to find the right stall and ask for apples. Your friend needs at least 202 apples. Help your friend!
Create a function called check() that takes a string. First, check whether the string is a number. If it is not, print the message "It is not a number!" If it is, change the type of your input value to int and check whether the number is more than 202 or equal to 202. If so, print the number. Otherwise, print another message "There are less than 202 apples! You cheated me!"
You do not need to take any input or call the function yourself.