UVA Solution
Programming Contest Problems and Solutions
Sunday, May 20, 2012
UVA Solution for 10071
//10071
#include <stdio.h>
int main()
{
long int s,v,t;
while(scanf("%ld%ld",&v,&t)==2)
{
s=v*t*2;
printf("%ld\n",s);
}
}
Newer Post
Older Post
Home