1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import java.util.Scanner; /** * UVA10071 */ public class UVA10071 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); while (sc.hasNext()) { int n1 = sc.nextInt(), n2 = sc.nextInt(); System.out.println(n1 * n2 * 2); } sc.close(); } } |