#ABC111A. AtCoder Beginner Contest 999
AtCoder Beginner Contest 999
题目描述
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 written by Snuke. Print the integer obtained by replacing each digit 1
with 9
and each digit 9
with 1
in .
猫斯努克正在学习书写汉字。今天,他练习写数字 "1 "和 "9",但他反过来写了。
给你一个由 Snuke 写的三位整数 。请打印将 中的每个数字
1
替换为9
,每个数字9
替换为1
后得到的整数。
输入格式
输入内容按以下格式标准输入:
输出格式
打印在 中用 9
替换每次出现的 1
和用 1
替换每次出现的 9
所得到的整数。
样例 #1
样例输入 #1
119
样例输出 #1
991
样例 #2
样例输入 #2
999
样例输出 #2
111
说明
数据规模与约定
- 是由数字
1
和9
组成的整数。
样例 解释
用 1
代替 1 位上的 9
,用 9
代替 10 位上的 1
,用 9
代替 100 位上的 1
。答案是 991
。