#include<bits/stdc++.h> using namespace std; int main() { double t; cin >> t; double n; cin >> n; double sum = t / n; sum /= 2; cout << setprecision(3) << fixed << sum << endl; }
麻烦帮我看看错哪了