john
first commit
c4b0eef
raw
history blame contribute delete
191 Bytes
#include<stdio.h>
main()
{
int v,t;
while(scanf("%d %d",&v,&t)==2)
{
if(v>=-100 && v<=100)
{
if(t>=0 && t<= 200)
printf("%d\n",2*v*t);
}
else
break;
}
return 0;
}