-코드
t1, v1 = map(int, input().split())
t2, v2 = map(int, input().split())
if t2 < 0 and v2 >= 10:
print("A storm warning for tomorrow! Be careful and stay home if possible!")
elif t1 > t2:
print("MCHS warns! Low temperature is expected tomorrow.")
elif v1 < v2:
print("MCHS warns! Strong wind is expected tomorrow.")
else:
print("No message")
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬]1977번 완전제곱수 (0) | 2021.05.18 |
---|---|
[백준/파이썬]1966번 프린터 큐 (0) | 2021.05.17 |
[백준/파이썬]21633번 Bank Transfer (0) | 2021.05.16 |
[백준/파이썬]21631번 Checkers (0) | 2021.05.16 |
[백준/파이썬]21612번 Boiling Water (0) | 2021.05.16 |