10071 - Back to High School Physics

10071 - Back to High School Physics

#include<iostream>
using namespace std;


int main()
{
	int velocity,time ;
	while(cin>>velocity&&cin>>time)
	{	
		cout<<2*time*velocity<<endl;
	}

	return 0;
}


你可能感兴趣的:(10071 - Back to High School Physics)