#include #include using namespace std; using ll = long long; int main() { double n; cin >> n; cout << fixed << setprecision(2) << n * 3.5 << endl; }