mirror of
https://gitlab.com/MisterBiggs/aoc2020.git
synced 2025-06-16 06:16:39 +00:00
13 lines
204 B
Python
13 lines
204 B
Python
import requests as r
|
|
|
|
input = open('day1\input.txt','r').readlines()
|
|
print(input)
|
|
|
|
input = [int(a) for a in input]
|
|
|
|
|
|
for i in input:
|
|
for j in input:
|
|
if i+j == 2020:
|
|
print(i,j,i*j)
|