john
first commit
c4b0eef
raw
history blame contribute delete
138 Bytes
#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;
}