Steps in an `if-elif-else` statement
1️⃣ Check the first condition
2️⃣ If true, execute the corresponding code
3️⃣ If false, check the next condition
4️⃣ Continue checking conditions until one is true
5️⃣ If no condition is true, execute the `else` block