diff --git a/Python/Leapyear.py b/Python/Leapyear.py index 1e77391..7764c75 100644 --- a/Python/Leapyear.py +++ b/Python/Leapyear.py @@ -1,9 +1,9 @@ # Python program to check if year is a leap year or not -year = 2000 +# year = 2000 # To get year (integer input) from the user -# year = int(input("Enter a year: ")) +year = int(input("Enter a year: ")) if (year % 4) == 0: if (year % 100) == 0: