mirror of
https://github.com/Alexander-D-Karpov/scripts.git
synced 2024-11-22 20:06:33 +03:00
7 lines
139 B
Python
7 lines
139 B
Python
with open("17.txt") as f:
|
|
data = list(map(int, f.read().split()))
|
|
|
|
n = [x for x in data if "4" in str(x)]
|
|
|
|
print(len(n), max(n))
|