john
first commit
c4b0eef
raw
history blame contribute delete
160 Bytes
#include <bits/stdc++.h>
using namespace std;
int main(){
int v, t;
while(scanf("%d %d", &v, &t) == 2)
printf("%d\n", v * t * 2);
return(0);
}