def Main(): a=set(list(input().split(","))) if len(a)==1 and "AC" in a: print("Done!") else: print("Failed...") Main()