I don't trust this language.

This commit is contained in:
David Vereb 2021-12-02 11:18:42 -05:00
parent b04338b19e
commit 5fdc7e3444

View File

@ -1,10 +1,10 @@
increment = 0
decrement = 0
same = 0
with open('input', 'r') as fp:
last = int(fp.readline())
increment = 0
decrement = 0
same = 0
for line in fp:
amt = int(line)
if(amt > last):