UVA 10071 - Back to High School Physics UVA • Sep 1, 2020 Problem PDFSolution:#include main() { int v,t; while(scanf("%d %d",&v,&t)==2) { if(v>=-100 && v<=100) { if(t>=0 && t<= 200) printf("%d\n",2*v*t); } else break; } return 0; } https://github.com/Shipu/OnlineJudgeProblemSolutionWithCPlusPlus/tree/master/uva/10071/10071.cpp Tags UVA Competitive Programming Shipu Ahamed Recommended for you UVA UVA 913 - Joana and the Odd Numbers 4 years ago • 1 min read UVA UVA 871 - Counting Cells in a Blob 4 years ago • 3 min read UVA UVA 866 - Intersecting Line Segments 4 years ago • 3 min read