Untitled

 avatar
unknown
plain_text
3 years ago
147 B
3
Indexable
#include <cmath>
#include <iostream>
using namespace std;
int main()
{
	float a, b, x;
	cin >> a >> b;
	x = sqrt(b/a);
	cout << x;

}

Editor is loading...