알고리즘

백준 23627: driip Python

짱이 되었어 2022. 11. 7. 09:02

 

sentence = input()
if len(sentence) >= 5 and sentence[-5:] == "driip":
    print("cute")
else:
    print("not cute")