program echo
       character(80) line
       print *,"Input Please: "
       read '(a)',line
       print *,line
       end