Python Square Liczba
import math
8 * 8 # 64
8 ** 2. # 64
math.pow(8, 2) # 64.0
Mattalui
import math
8 * 8 # 64
8 ** 2. # 64
math.pow(8, 2) # 64.0
take the input as an integer and output a square of "*" characters.
val = int(input())
for x in range (0, val):
print('*',end='')