提交时间:2024-10-28 11:54:42

运行 ID: 54438

#include <bits/stdc++.h> using namespace std; int main() { int a, b; cin >> a >> b; cout <<fixed<<setprecision(3)<<100.0*b/a<<'%'; return 0; }