import java.util.ArrayList; import java.util.Scanner; public class No146 { public static void main(String[] args) { // 標準入力から読み込む際に、Scannerオブジェクトを使う。 Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int count = 0; for(int i = 0; i < n; i++) { int c = sc.nextInt(); int d = sc.nextInt(); if(c % 2 == 0) { count += c/2 * d; }else { count += (c/2 + 1) * d; } } System.out.println(count); } }