c4b0eef
1
2
3
4
5
6
7
8
9
10
11
12
#include <cstdio> int main() { int v, t, x; while ( scanf("%d %d",&v, &t) != EOF ) { x = 2 * t * v; printf("%d\n", x); } }