Back
Close

Output stars

Statement

 Goal

Hi martixana, you're given a single number as an input and you must output '*' symbols equal to that number.

For example, your program is given 2 as an input and you must output to the console '**':
Input
A number
Output
One line with '*' symbols equal to the input number
Constraints
The input number is greater than 0 and less than 100
Example
Input
2
Output
**

Tags

Difficulty
Easy

Test cases
Test 1 Test
Input
2
Output
**

Validator 1 Validator
Input
2
Output
**

Test 2 Test
Input
4
Output
****

Validator 2 Validator
Input
5
Output
*****

Test 3 Test
Input
10
Output
**********

Validator 3 Validator
Input
9
Output
*********

Test 4 Test
Input
1
Output
*

Validator 4 Validator
Input
1
Output
*

Solution language

Solution

Stub generator input