In this Bite you complete a function that takes an int and returns it appended with the right suffix: 1 -> 1st, 2 -> 2nd, 4 -> 4th, 11 -> 11th, etc.

As per Wikipedia the rules are:

To focus on the exercise you can assume that the number inputted into the function is a positive int. Good luck and keep calm and code in Python!