Please sign in first.
B - I miss you...
解説
/
/
実行時間制限: 2 sec / メモリ制限: 1024 MiB
配点: 200 点
問題文
文字列 S が与えられます。S のすべての文字を x で置き換えて出力してください。
制約
- S は英小文字のみからなる文字列
- S の長さは 1 以上 100 以下
入力
入力は以下の形式で標準入力から与えられる。
S
出力
S のすべての文字を x で置き換えて出力せよ。
入力例 1
sardine
出力例 1
xxxxxxx
sardine のすべての文字を x で置き換えると xxxxxxx となります。
入力例 2
xxxx
出力例 2
xxxx
入力例 3
gone
出力例 3
xxxx
Score : 200 points
Problem Statement
Given is a string S. Replace every character in S with x and print the result.
Constraints
- S is a string consisting of lowercase English letters.
- The length of S is between 1 and 100 (inclusive).
Input
Input is given from Standard Input in the following format:
S
Output
Replace every character in S with x and print the result.
Sample Input 1
sardine
Sample Output 1
xxxxxxx
Replacing every character in S with x results in xxxxxxx.
Sample Input 2
xxxx
Sample Output 2
xxxx
Sample Input 3
gone
Sample Output 3
xxxx