Step-by-step explanation:
// Pseudocode for function OutputLeapYear
function OutputLeapYear(inputYear):
if (inputYear % 4 == 0 and inputYear % 100 != 0) or (inputYear % 400 == 0):
print(inputYear + " is a leap year.")
else:
print(inputYear + " is not a leap year.")
return
// Pseudocode for main program
function main():
year = input("Please enter a year: ")
OutputLeapYear(year)
return
// Example usage of the program
main() // User inputs 1712
// Output: 1712 is a leap year.
main() // User inputs 1913
// Output: 1913 is not a leap year.