Check if the year is divisible by 4
If it is not divisible by 4, it is not a leap year
If it is divisible by 4, check if it is divisible by 100
If it is not divisible by 100, it is a leap year
If it is divisible by 100, check if it is divisible by 400
If it is divisible by 400, it is a leap year
If it is not divisible by 400, it is not a leap year
