Línia horitzontal X59783


Statement
 

pdf   zip

html

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".

Public test cases
  • Input

    5
    

    Output

    #####
    
  • Input

    12
    

    Output

    ############
    
  • Input

    1
    

    Output

    #
    
  • Input

    0
    

    Output

    
            
                                
  • Input

    -2
    

    Output

    
            
                                
  • Information
    Author
    Héctor Barriga
    Language
    Catalan
    Official solutions
    Python
    User solutions