#include using namespace std; int main(){ double n; cin >> n; double ans = 3.5 * n; cout << fixed << ans << endl; return 0; }