public class Program_10_1 {
	public static void main(String [] args) throws Exception {
		int total = 0;

		for (int i = 1; i <= 20; i++) 
			total += i;
		System.out.println("The total is: " + total);
	}
}
