101541: [AtCoder]ABC154 B - I miss you...

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

Description

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

Input

题意翻译

给出一个字符串 $S$ ,请将 $S$ 中每一个字符都替换为 ```x```,然后输出。

加入题单

算法标签: