Advertisement
Guest User

Referência para 10071 (Luiza)

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