john
first commit
c4b0eef
raw
history blame contribute delete
132 Bytes
#include <cstdio>
int main()
{
int v, t, x;
while ( scanf("%d %d",&v, &t) != EOF )
{
x = 2 * t * v;
printf("%d\n", x);
}
}