File size: 138 Bytes
c4b0eef
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
#include <cstdio>
using namespace std;

int main() {
	int v, t;
	while (scanf("%d %d", &v, &t) != EOF) printf("%d\n", 2*v*t);
	return 0;
}