Sunday, June 14, 2015

UVa 10071 - Back to High School Physics

// UVa 10071 - Back to High School Physics
#include <iostream>
using namespace std;

int main() {
	signed long long int v, t;
	while (cin >> v >> t) {
		cout << v * t * 2 << endl;
	}
	return 0;
}

No comments:

Post a Comment