100 atcoder#ABC179A. [ABC179A] Plural Form
[ABC179A] Plural Form
Score : 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 of a Taknese noun. Output its plural form.
Constraints
- is a string of length between , inclusive.
- contains only lowercase English letters.
Input
Input is given from Standard Input in the following format:
Output
Print the plural form of the given Taknese word.
apple
apples
apple
ends with e
, so its plural form is apples
.
bus
buses
bus
ends with s
, so its plural form is buses
.
box
boxs