Run ID:125792

提交时间:2025-07-15 15:23:59

#include<bits/stdc++.h> using namespace std; int main() { double c; double f; cin>>c; double f = c * 9 / 5 + 32; cout << f; return 0; }