using System; using System.Collections.Generic; using System.Linq; class Program { static string ReadLine() { return Console.ReadLine().Trim(); } static int ReadInt() { return int.Parse(Console.ReadLine()); } static int[] ReadInts() { return ReadLine().Split().Select(int.Parse).ToArray(); } static string[] ReadStrings() { return ReadLine().Split(); } static void Main() { int n = ReadInt(); long ans = 0; const long mod = 1000000007; for (int i = 0; i < n; i++) { string[] ss = ReadStrings(); long c = long.Parse(ss[0]); long d = long.Parse(ss[1]); // c 個の椅子がある机に座れる人数 long m = (c / 2) + (c % 2); ans = (ans + (m % mod) * (d % mod)) % mod; } Console.WriteLine(ans); } }