Problem B: 【入门】求长方形的周长和面积

Memory Limit:16 MB Time Limit:1.000 S
Creator:
Submit:40 Solved:31

Description

从键盘读入2个整数,分别代表一个长方形的长和宽,请计算长方形的周长和面积;

Input

从键盘读入2个整数,用空格隔开

Output

输出有2行,第1行代表周长,第2行代表面积

Sample Input

2 3

Sample Output

10
6