#include int main(void){ int N; float ans; scanf("%d", &N); ans = 3.5*N; printf("%.1f\n", ans); return 0; }