Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 100 点
問題文
AtCoder 王国では、英小文字を用いる高橋語という言語が使われています。
高橋語では、名詞の複数形は次のルールで綴られます。
- 単数形の末尾が
s
以外なら、単数形の末尾にs
をつける - 単数形の末尾が
s
なら、単数形の末尾にes
をつける
高橋語の名詞の単数形 S が与えられるので、複数形を出力してください。
制約
- S は長さ 1 以上 1000 以下の文字列
- S は英小文字のみを含む
入力
入力は以下の形式で標準入力から与えられる。
S
出力
与えられた高橋語の複数形を出力せよ。
入力例 1
apple
出力例 1
apples
apple
の末尾は e
なので、複数形は apples
になります。
入力例 2
bus
出力例 2
buses
bus
の末尾は s
なので、複数形は buses
になります。
入力例 3
box
出力例 3
boxs
Score : 100 points
Problem Statement
In the Kingdom of AtCoder, people use a language called Taknese, which uses lowercase English letters.
In Taknese, the plural form of a noun is spelled based on the following rules:
- If a noun's singular form does not end with
s
, appends
to the end of the singular form. - If a noun's singular form ends with
s
, appendes
to the end of the singular form.
You are given the singular form S of a Taknese noun. Output its plural form.
Constraints
- S is a string of length 1 between 1000, inclusive.
- S contains only lowercase English letters.
Input
Input is given from Standard Input in the following format:
S
Output
Print the plural form of the given Taknese word.
Sample Input 1
apple
Sample Output 1
apples
apple
ends with e
, so its plural form is apples
.
Sample Input 2
bus
Sample Output 2
buses
bus
ends with s
, so its plural form is buses
.
Sample Input 3
box
Sample Output 3
boxs