SMASIF

10071-High School Physics

Apr 28th, 2015
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.15 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     int v,t;
  5.     while(scanf("%d %d", &v, &t)!= EOF)
  6.     {
  7.         printf("%d\n", 2*v*t);
  8.     }
  9.     return 0;
  10. }
Add Comment
Please, Sign In to add comment