18 lines
350 B
Python
Executable file
18 lines
350 B
Python
Executable file
#!/usr/bin/env python
|
|
import functools
|
|
import itertools
|
|
import operator
|
|
import sys
|
|
|
|
|
|
def main() -> None:
|
|
values = [int(n) for n in sys.stdin.readlines()]
|
|
for tup in itertools.combinations(values, 3):
|
|
if sum(tup) == 2020:
|
|
print(functools.reduce(operator.mul, tup))
|
|
break
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|