module main; import std; void main() { // 入力 auto N = readln.chomp.to!int; // 答えの計算と出力 writeln(N * 3.5); }