Page not loading? Try clicking here.
Placeholder

#5077

문자열008 1s 32MB

Problems

문자열 S를 입력받아 문자 'a''A'가 들어 있는지 확인하시오. 'a'나 'A'가 있으면 True를 출력하고, 없으면 False를 출력하시오.​


Input

첫 줄에 문자열 S가 주어진다 (1 \le S의 길이 \le 100 )


Output

문자열 S에 'a'나 'A'가 있으면 True를 출력하고, 없으면 False를 출력한다.


Example #1

cat
True

Example #2

CAT
True

Example #3

cut
False

Source

JUNGOL - klee
You must sign in to write code.