← Back to List

14909번: 양수 개수 세기 ↗

Solutions

Python 3
68 B | 68 chars
print([1 if i >0 else 0 for i in map(int,input().split())].count(1))