Write a program that reads from the console a string of maximum 20 characters. If the length of the string is less than 20, the rest of the characters should be filled with *.
Print the resulting string on the console.
Examples:
Input:
|
Welcome to SoftUni!
|
a regular expression (abbreviated regex or regexp and sometimes
called a rational expression)
is a sequence of characters that forms a search pattern
|
C#
|
Output:
|
Welcome to SoftUni!*
|
a regular expression
|
C#******************
|