<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">import java.io.* ;

public class Cat {

   public static void main( String [] args ) {
         DataInputStream dis = new DataInputStream( System.in ) ;
         File file = new File("temp") ;
 try {
         FileOutputStream fos = new FileOutputStream(file) ;
         PrintStream pos = new PrintStream(fos) ;
        
            while ( true ) {
                String s = dis.readLine() ;
                if ( s == null ) break ;
                pos.println(s) ;
            }
         } 
         catch (IOException ioe ) { }
      }

   }
</pre></body></html>