document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public class CreatoreData
  2. {
  3.     public static void main(String[] args)
  4.     {
  5.         Data oggi = new Data(32,13,2015);
  6.        
  7.         System.out.println(oggi.getGiorno() + " " + oggi.getMese() + " " + oggi.getAnno());
  8.     }
  9. }
');