#include #include #include #include #include #include #include // std::accumulate(vec.begin(),vec.end(),0) sum of element #include #include #include using namespace std; typedef long long ll; typedef std::pair mypair; #define DEBUG // void print_vector(const std::vector &t); // void unique_vector(std:: vector &t); template void print_vector(const std::vector &t); template void unique_vector(std:: vector &t); ll n, m; int main(){ cin >> n; cout << n*1.08 << endl; } template void unique_vector(std::vector &t) { std::sort(t.begin(), t.end()); t.erase( std::unique(t.begin(), t.end()), t.end() ); } template void print_vector(const std::vector &t){ for(auto itr=t.begin(); itr != t.end(); itr++){ std::cout << *itr; if(itr != t.end()-1) std::cout << ' '; } std::cout << std::endl; }