Notice
Recent Posts
Recent Comments
Link
«   2025/02   »
1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28
Archives
Today
Total
관리 메뉴

짱이 될거야

백준 23627: driip Python 본문

알고리즘

백준 23627: driip Python

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

 

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