class  PreparingTable{
	public static void main(String[] args) {
		int a=25, b=1;
		System.out.println("the table of "+a+"= ");
		while(b<=10){
			int c = a*b;
			System.out.println(c);
			b = b+1;
		}
	}
}