← Back to List

21301번: Comfy Deviations ↗

Solutions

Python 3
103 B | 103 chars
from statistics import *
print("COMFY" if stdev([*map(float,input().split())]) <= 1.0 else "NOT COMFY")