mirror of
https://github.com/codeflash-ai/codeflash-internal.git
synced 2026-05-04 18:25:18 +00:00
22 lines
262 B
Python
22 lines
262 B
Python
def problem_p02594(input_data):
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# 標準入力を取得
|
|
|
|
X = int(eval(input_data))
|
|
|
|
# 求解処理
|
|
|
|
ans = str()
|
|
|
|
if X >= 30:
|
|
|
|
ans = "Yes"
|
|
|
|
else:
|
|
|
|
ans = "No"
|
|
|
|
# 結果出力
|
|
|
|
return ans
|