diff --git a/9/2 - First, Second, Third.py b/9/2 - First, Second, Third.py new file mode 100644 index 0000000..cd11e24 --- /dev/null +++ b/9/2 - First, Second, Third.py @@ -0,0 +1,5 @@ +x = int(input()) +if x == 1: print("1st") +elif x == 2: print("2nd") +elif x == 3: print("3rd") +else: print(str(x) + "th")