summaryrefslogtreecommitdiff
path: root/3a.py
diff options
context:
space:
mode:
Diffstat (limited to '3a.py')
-rwxr-xr-x3a.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/3a.py b/3a.py
deleted file mode 100755
index adc7f60..0000000
--- a/3a.py
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/usr/bin/env python3
-
-import sys, re
-
-count=0
-for line in sys.stdin:
- a,b,c=[int(x) for x in re.findall(r"\d+",line)]
- if a+b+c>2*max(a,b,c):
- count+=1
-
-print(count)