#include <iostream>
#include <cmath>
using namespace std;
int main() {
double v0 = 60, theta = 60;
double t = 2 * v0 * sin(theta * M_PI / 180) / 9.8;
cout << fixed;
cout.precision(3);
cout << t << '\n'; // Output: 12.036
}
I2luY2x1ZGUgPGlvc3RyZWFtPgojaW5jbHVkZSA8Y21hdGg+CnVzaW5nIG5hbWVzcGFjZSBzdGQ7CgppbnQgbWFpbigpIHsKICAgIGRvdWJsZSB2MCA9IDYwLCB0aGV0YSA9IDYwOwogICAgZG91YmxlIHQgPSAyICogdjAgKiBzaW4odGhldGEgKiBNX1BJIC8gMTgwKSAvIDkuODsKICAgIGNvdXQgPDwgZml4ZWQ7CiAgICBjb3V0LnByZWNpc2lvbigzKTsKICAgIGNvdXQgPDwgdCA8PCAnXG4nOyAgLy8gT3V0cHV0OiAxMi4wMzYKfQo=