//#include<stdio.h>
//#include<math.h>
//int main()
//{
//int i = 0;
//int j = 0;
//
//
//
// for (i = 1; i <= 9; i++)
// {
//  for (j = 1; j <= i; j++)
//  {
//
//   printf("%d*%d=%2d ",i, j, i*j);
//  }
//  printf("\n");
// }
// system("pause");
// return;
//
//}
//

 

 

 


//#include<stdio.h>
//#include<math.h>
//int main()
//{
// int a = 0;
// int count = 0;
// for (a = 1000; a <= 2000; a++)
// {
//  if ((a % 4 == 0) && (a % 100 != 0))
//  {
//
//   printf("%d\t", a);
//   count++;
//  }
//  else if (a % 400 == 0)
//  {
//
//   printf("%d\t", a);
//   count++;
//  }
// }
// printf("count=%d", count);
// system("pause");
// //return;
//}