101790: [AtCoder]ABC179 A - Plural Form

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

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, append s to the end of the singular form.
  • If a noun's singular form ends with s, append es 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

Input

题意翻译

在一个王国,有一种语言叫高桥语,这种语言是用英文小写字母组成的。现在输入一个单词,为字符串$s$。 - 如果这个单词的单数形式不是以`s`结尾的,在末尾加上`s`。 - 如果这个单词的单数形式是以`s`结尾的,在末尾加`es`。 保证:1.字符串`s`不超过1000; 2.均为小写字母。 Translated by CodingID

加入题单

算法标签: