Feu un programa que llegeixi un nombre n, i que escrigui una línia horitzontal amb n símbols #
.
Entrada
Jutge.org introduirà un nombre enter n.
Sortida
Escriviu en horitzontal n símbols #
.
Pista
Recordeu que amb el símbol +
podem unir text.
Recordeu també que per afegir el text "hola"
al final d’una variable t
que contingui text podem escriure de forma compacta t += "hola"
.
Input
5
Output
#####
Input
12
Output
############
Input
1
Output
#
Input
0
Output
Input
-2
Output