mirror of
https://github.com/codeflash-ai/codeflash-internal.git
synced 2026-05-04 18:25:18 +00:00
14 lines
247 B
Python
14 lines
247 B
Python
def problem_p03591(input_data):
|
|
def slove():
|
|
|
|
import sys
|
|
|
|
input = sys.stdin.readline
|
|
|
|
s = str(input_data.rstrip("\n"))
|
|
|
|
return "Yes" if s[:4] == "YAKI" else "No"
|
|
|
|
if __name__ == "__main__":
|
|
|
|
slove()
|