public class DingDingBottle {
	public static void main (String args[]) 	// La signature typique du main
	{
		for (int i = 0; i<=100;i++) 		// Compte de 1 à 100
		{
			if (((i%5) == 0) && ((i%7)==0)) 		// Si i est multiple de 5 et 7
			{
				System.out.println("Ding Ding Bottle ");	// Affiche "Ding Ding Bottle"

			}
			else
			{
				if ((i%5) == 0)				// Si i est multiple de 5
				{
					System.out.println ("Bottle");	// Affiche "Bottle"
				}
				else
				{
					if ((i%7) == 0)			// Si i est multiple de 7
					{
						System.out.println ("Ding Ding");	// Affiche "Ding Ding"
					}
					else
					{
						System.out.println (i+ " ");		// Sinon, affiche le chiffre
					}
				}
			}
		}
	}
}
