/* attention, use this source code as well as possible */
#include <stdio.h>
int main ()
{
int i,j,k; //
for (i=1; i<=3; i++) {
//getchar();
for (j=1; j<=3; j++) {
getchar();
for (k=1; k<=3; k++) {
printf ("%d %d %d", i, j, k);
printf ("\n");
}
}
}
}
/* attention, use this source code as well as possible */
#include <stdio.h>
#include <float.h>
int main()
{
float variable1 = FLT_MAX;
double variable2 = DBL_MAX;
long double variable3 = LDBL_MAX;
printf("%.2f\n", variable1);
printf("%e\n", variable2);
printf("%Le\n", variable3);
return 0;
}