#include int main() { int C; scanf("%d", &C); float F = C * 9.0 / 5 + 32; printf("%.1f", F); return 0; }