aoc_1a.py 313 B

12345678910111213141516171819
  1. # -*- coding: utf-8 -*-
  2. """
  3. Created on Fri Oct 15 20:54:13 2021
  4. @author: Jonatan
  5. """
  6. def main():
  7. print("Yomanshit!")
  8. freq = 0
  9. with open("input.txt") as file:
  10. for line in file:
  11. freq += int(line.rstrip())
  12. print(freq)
  13. if __name__ == "__main__":
  14. main()