/*
//输出第二个整数
#include<iostream>
using namespace std;
int main()
{
int a,b,c;
cin>>a>>b>>c;
cout<<b<<endl;
return 0;
}
*/
/*
//输出一个单精度浮点型(保留三位)
#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
float a;
cin >> a;
cout << fixed << setprecision(3) << a << endl;
return 0;
}
*/
/*
//按序输出字符 整数 单精度浮点型 双精度浮点型(保留六位)
#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
char a;
int b;
float c;
double d;
cin >> a >> b >> c >> d;
cout << a << '\n' << b << endl;
cout << fixed << setprecision(6) << c << '\n' << d << endl;
return 0;
}
*/
/*
//输入三个整数算(a + b)*c
#include<iostream>
using namespace std;
int main()
{
int a, b, c, d;
cin >> a >> b >> c;
if (a<10000 && a>-10000 && b<10000 && b>10000 && c<10000 && c>10000);
{
d = (a + b)*c;
cout << d << endl;
}
return 0;
}
*/
/*
//输出第一个患病人数第二个死亡人数输出死亡率(三位小数)
#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
double a,b,c;
cin >> a >> b;
c = (b / a)*100;
cout << fixed << setprecision(3) << c << "%" << endl;
return 0;
}
*/
/*
//n个苹果被1只虫以每x小时吃掉1个求y小时后苹果剩多少
#include<iostream>
using namespace std;
int main()
{
int n, x, y;
cin >> n >> x >> y;
if (y <= n * x);
{
n = (n*x - y) / x;
cout << n << endl;
}
return 0;
}
*/
/*
//苹果另一种
#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
float n, x, y, m;
cin >> n >> x >> y;
m = n - y / x;
if (y <= n * x)
{
if (y>0 && y != x&&x*y != n)
{
cout << fixed << setprecision(0) << m - 1 << endl; 不完善
}
else
{
cout << fixed << setprecision(0) << m << endl;
}
return 0;
}
*/
/*
//三角形三个顶点坐标为(x1, y1), (x2, y2), (x3, y3)问三角形面积
//海伦公式 p=(a+b+c)/2; s=sqrt(p*(p-a)*(p-b)*(p-c);
//pow(a,2) 表示a的平方
//sqrt(a+b) 表示(a+b)开二次方根
#include<iostream>
#include<iomanip>
#include<cmath>
using namespace std;
int main()
{
float x1,y1,x2,y2,x3,y3,a,b,c,d,s;
cin >> x1 >> y1 >> x2 >> y2 >> x3 >> y3;
a = sqrt(pow((x1 - x2), 2) + pow((y1 - y2), 2));
b = sqrt(pow((x1 - x3), 2) + pow((y1 - y3), 2));
c = sqrt(pow((x2 - x3), 2) + pow((y2 - y3), 2));
if(a <= b + c&&b <= a + c&&c <= a + b);
{
d = (a + b + c) / 2;
s = sqrt(d*(d - a)*(d - b)*(d - c));
cout << fixed << setprecision(2) << s << endl;
}
return 0;
}
*/
/*
//大象喝20升水解渴,只有一个深h厘米底面半径r厘米小圆桶问大象至少要喝多少桶水才解渴(设Pi=3.14159)
#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
double PI = 3.14159;
double h, r, x;
cin >> h >> r;
if (20000 / ((PI*r*r)*h) == 0)
{
x = 20000 / ((PI*r*r)*h);
}
else
{
x = 20000 / ((PI*r*r)*h) + 1;
}
cout << fixed << setprecision(0) << x << endl;
return 0;
}
*/
/*
//大象另一种
#include<iostream>
#include<iomanip>
#include<cmath>
using namespace std;
int main()
{
double PI = 3.14159;
double h, r, v, n;
cin >> h >> r;
v = PI*h*pow(r, 2);
n = 20000 / v;
if (n / 1 == 0)
cout << n << endl;
else
cout << fixed << setprecision(0) << n + 1 << endl;
return 0;
}
*/
/*
//输入球半径r求体积(计算公式为V=4/3*π*r*r*r取π= 3.14)
#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
double PI = 3.14;
double r,v;
cin >> r;
v = 4*PI*r*r*r/3;
cout << fixed << setprecision(2) << v << endl;
return 0;
}
*/