mirror of
https://github.com/codeflash-ai/codeflash-internal.git
synced 2026-05-04 18:25:18 +00:00
10 lines
171 B
Python
10 lines
171 B
Python
def problem_p03567(input_data):
|
|
def main():
|
|
|
|
S = eval(input_data)
|
|
|
|
return "Yes" if "AC" in S else "No"
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|