	public static void main(String[] args) {
		// TODO Auto-generated method stub
		int N = 100;
		int i = 1;
		int S = 0;
		while (i<=N){
			S = S+i;
			i++;
		}
		System.out.println("La somme des "+N+" premiers entiers est : "+S);
	}	