Question If the user types

First
Second

what will the following program write?

line = 
  (\ln -> 
    (getLine>>=putStrLn) >> 
      putStrLn ln)

main = 
  putStrLn "Gimme 2 lines" >> 
    (getLine >>= line)