#abc141a. [abc141_a]Weather Prediction
[abc141_a]Weather Prediction
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 representing the weather in the town today. Predict the weather tomorrow.
Constraints
- is
Sunny
,Cloudy
, orRainy
.
Input
Input is given from Standard Input in the following format:
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