diff options
Diffstat (limited to 'comp/work/3/year.py')
-rwxr-xr-x | comp/work/3/year.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/comp/work/3/year.py b/comp/work/3/year.py new file mode 100755 index 0000000..854c2c5 --- /dev/null +++ b/comp/work/3/year.py @@ -0,0 +1,4 @@ +year = int(input("whats the year? ")) + +if (year % 4) == 0: + print("its a leep year") |