codeflash-internal/experiments/pie_test_set/p03591.py

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()