13649 - Palindromic String   

Description

給定一個 字串,請判斷它是否為一個 回文字串 (case-insensitive)

 

舉例:

如果字串是 Elle,則需判斷  一個回文字串

如果字串是 Peter,則需判斷 不是 一個回文字串

Input

一個 字串 *Str

 

Note:

  1. *Str 長度最大不超過 10

Output

輸出符合以下格式:

*bool

 

Note:

  1. 輸出的最後必須要有一個換行符號 ('\n')
  2. *bool 為 "true", "false" 其中一個

Sample Input  Download

Sample Output  Download

Tags




Discuss