#include using namespace std; int main() { int N; cin >> N; double ans = 3.5; ans *= N; cout << fixed << setprecision(12) << ans << endl; }