import java.awt.*;
import java.io.*;

public class Dpiano  
  {
    static String wheel[] = {"W-2/","W-1/","W%200/","W%2b1/","W%2b2/"};
    static int jwheel;
   static BufferedWriter myOutput;


public static void main(String[] args) throws IOException{
   String nome;

   Polygon c;
   
  

    File outputFile = new File("temp.out");
    myOutput = new BufferedWriter(new FileWriter(outputFile));                      
   //   for( jwheel=0;jwheel < wheel.length;jwheel++){
      jwheel = 2;
      myOutput.write(
      "<body><h1>Piano di costruzione della camera prototipo</h1>\n");     
     //   nome = codice[i];
          int k = 9;
     //   for(int k=0;k<12;k++){
      myOutput.write("</body>\n");
      myOutput.close();
  }
 }
