def cat_twice(part1, part2):
    cat = part1 + part2
    print_twice(cat)
line1 = input ("enter some text ")
line2 = input ("enter some more text ")
cat_twice('line1', 'line2')


    
