#abc179a. [abc179_a]Plural Form

[abc179_a]Plural Form

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 SS of a Taknese noun. Output its plural form.

Constraints

  • SS is a string of length 11 between 10001000, inclusive.
  • SS contains only lowercase English letters.

Input

Input is given from Standard Input in the following format:

SS

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