/*
* Created on 1 janv. 2005
*/
package com.bourzeix;
/**
* @author Stéphane Bourzeix
*/
public class BonneAnnee {
public static void main(String args) {
int jours = 365;
int depart = 0;
while(depart < jours){
depart ++;
System.out.println("Bonne année 2005 !");
}
}
}