Problem10767--ABC141 - A - Weather Prediction

10767: ABC141 - A - Weather Prediction

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 512 MiB

Description

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.

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.

Constraints

$S$ is Sunny, Cloudy, or Rainy.

Sample 1 Input

Sunny

Sample 1 Output

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

Sample 2 Input

Rainy

Sample 2 Output

Sunny

Source/Category