101110: [AtCoder]ABC111 A - AtCoder Beginner Contest 999

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

Description

Score : $100$ points

Problem Statement

Cat Snuke is learning to write characters. Today, he practiced writing digits 1 and 9, but he did it the other way around.

You are given a three-digit integer $n$ written by Snuke. Print the integer obtained by replacing each digit 1 with 9 and each digit 9 with 1 in $n$.

Constraints

  • $111 \leq n \leq 999$
  • $n$ is an integer consisting of digits 1 and 9.

Input

Input is given from Standard Input in the following format:

$n$

Output

Print the integer obtained by replacing each occurrence of 1 with 9 and each occurrence of 9 with 1 in $n$.


Sample Input 1

119

Sample Output 1

991

Replace the 9 in the ones place with 1, the 1 in the tens place with 9 and the 1 in the hundreds place with 9. The answer is 991.


Sample Input 2

999

Sample Output 2

111

Input

题意翻译

### 题目描述 某位OIer在练习写字,但是他不小心把1和9写反了,也就是说他把1写成了9,9写成了1。现在请你帮他改过来。 ### 输入格式 输入他写的字$n$,只包含1和9。 ### 输出格式 输出一行,是修正好的字。 ## 提示 $111 \le n \le 999$

加入题单

算法标签: