Wednesday, April 13, 2016

Published April 13, 2016 by with 0 comment

UVA Problem 100: Back to High school physics-Solution

#include <stdio.h>

int main()
{
    int v, t;
    while (scanf("%d%d",&v,&t)==2)
        printf("%d\n",(2*v*t));
    return 0;
}
      edit

0 comments:

Post a Comment