4 position = 3 # forth square in, we moved 3 right from where we were, 0 + 3 -> 3
8 for line in open("input.txt", "r"):
10 print("line: ", line_number)
16 print(line[position], position)
17 if line[position] == "#":
22 # now add 3 to the position
24 if position >= len(line):
25 position = position - len(line)
27 print("There were", trees_count, "trees")