Advent of Code 2018 Day 01 Part 1 1 2 3 4with open("day01_input.txt", "r") as f: changes = [int(i) for i in f.read().splitlines()] print(sum(changes))