fil = open('artikel.txt','r')
rad = ' '
while rad != '':
    rad = fil.readline()
    print(rad)
