#include <iostream> using namespace std; int main() { float a,b,c; scanf("%f%f%f",&a,&b,&c); b=a-273.15; c=b*1.8+32; printf("%.9f",c); return 0; }