import java.util.Scanner; public class Main_yukicoder111 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int l = sc.nextInt(); long ret = (l - 1) / 2; ret *= ret; System.out.println(ret); sc.close(); } }