import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner koko = new Scanner(System.in); int l = koko.nextInt(); int n = (l-1)/2; long kai = (long)Math.pow(n,2); System.out.println(kai); } }