Untitled

Anonymous
plain_text
11/13/2022 2:03 PM
176 B
12
Indexable
#include <iostream>
using namespace std;
int main()
{
	int a, b, c;
	cin >> a >> b;
	cout << "c = " << sqrt(a * b) << endl;
}
Editor is loading...