101410: [AtCoder]ABC141 A - Weather Prediction

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

Description

Score: $100$ points

Problem Statement

The weather in Takahashi's town changes day by day, in the following cycle: Sunny, Cloudy, Rainy, Sunny, Cloudy, Rainy, ...

Given is a string $S$ representing the weather in the town today. Predict the weather tomorrow.

Constraints

  • $S$ is Sunny, Cloudy, or Rainy.

Input

Input is given from Standard Input in the following format:

$S$

Output

Print a string representing the expected weather tomorrow, in the same format in which input is given.


Sample Input 1

Sunny

Sample Output 1

Cloudy

In Takahashi's town, a sunny day is followed by a cloudy day.


Sample Input 2

Rainy

Sample Output 2

Sunny

Input

题意翻译

高桥君居住的城市,每一天的天气都会周期性地变化为晴天(Sunny)、阴天(Cloudy)、雨(Rainy)、晴天、阴天、雨。 给出表示今天天气的字符串S,请预测明天的天气。

加入题单

上一题 下一题 算法标签: