AT_abc401_a [ABC401A] Status Code

Description

You are given an integer $ S $ between $ 100 $ and $ 999 $ (inclusive). If $ S $ is between $ 200 $ and $ 299 $ (inclusive), print `Success`; otherwise, print `Failure`.

Input Format

The input is given from Standard Input in the following format: > $ S $

Output Format

Print the answer.

Explanation/Hint

### Sample Explanation 1 $ 200 $ is between $ 200 $ and $ 299 $ , so print `Success`. ### Sample Explanation 2 $ 401 $ is not between $ 200 $ and $ 299 $ , so print `Failure`. ### Constraints - $ 100 \le S \le 999 $ - $ S $ is an integer.