Information
- ID
- 845
- Time
- 1000ms
- Memory
- 256MiB
- Difficulty
- 1
- Tags
- (None)
- # Submissions
- 197
- Accepted
- 73
- Uploaded By
#include<bits/stdc++.h>
using namespace std;
int main(){
double f,c;
cin>>f;
cout<<fixed<<setprecision(5)<<5*(f-32)/9;
return 0;
}