#include<iostream>
#include<cmath>
#include<iomanip>
usingnamespace std;
int function(int x, int y)
{
int f;
f=pow((pow(x,2)+pow(y,2)),.5);
return(f);
}
int main()
{
int x(0); // x integers
int y(0); // y integers
int m(0); // number of integers
int f(0); // function (x,y)
for (x=0; x<=m+1; x++)
{
for (y=1; y<=x; y++)
{
cout.precision(1);
cout << setw(f) <<endl;
}
}
return 0;
}