class Yukicoder def initialize @d = gets.to_i end def run two_side_total = @d / 2 x = two_side_total / 2 y = two_side_total - x return x * y end end puts Yukicoder.new.run