프로그램 명: ncpc_aaah
제한시간: 1 초
[문제 요약] 문자열 s1 과 s2가 주어진다.
s1의 길이가 s2이 길이보다 길거나 같다면 go 를 출력, 아니면 no 를 출력.
Jon Marius shouted too much at the recent Justin Bieber concert, and now
needs to go to the doctor because of his sore throat. The doctor’s instructions
are to say “aaah”. Unfortunately, the doctors sometimes need Jon Marius to say
“aaah” for a while, which Jon Marius has never been good at. Each doctor requires
a certain level of “aah” . some require “aaaaaah”, while others can actually
diagnose his throat with just a “h”. (They often diagnose wrongly, but that is beyond
the scope of this problem.) Since Jon Marius does not want to go to a doctor
and have his time wasted, he wants to compare how long he manages to hold the
“aaah” with the doctor’s requirements. (After all, who wants to be all like “aaah”
when the doctor wants you to go “aaaaaah”?)
Each day Jon Marius calls up a different doctor and asks them how long his
“aaah” has to be. Find out if Jon Marius would waste his time going to the given
doctor.
Input
Output
입력
The input consists of two lines. The first line is the “aaah” Jon Marius is able
to say that day. The second line is the “aah” the doctor wants to hear. Only
lowercase ’a’ and ’h’ will be used in the input, and each line will contain between
0 and 999 ’a’s, inclusive, followed by a single ’h’.
출력
Output “go” if Jon Marius can go to that doctor, and output “no” otherwise.
입출력 예
입력
aaah
aaaaah
출력
no
입력
aaah
ah
출력
go
출처:ncpc/2012/Problem A
요약:likepad
[질/답]
[제출 현황]
[푼 후(1)]