#include <iostream>
int main()
{
double v, a;
std::cin >> v >> a;
double len = (v*v) / (2 * a);
std::cout << len << std::endl;
return 0;
}
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
#include <iostream>
int main()
{
double v, a;
std::cin >> v >> a;
double len = (v*v) / (2 * a);
std::cout << len << std::endl;
return 0;
}