Tuesday 20 September 2016

UVA 10071 - Back to High School Physics

Problen:10071 - Back to High School Physics
Code:
#include<bits/stdc++.h>
using namespace std;
int main()
{
       long long a,b;
       while(cin>>a>>b)
       {
              cout<<2*a*b<<endl;
       }
       return 0;
}

No comments:

Post a Comment