← Back to List

16486번: 운동장 한 바퀴 ↗

Solutions

C++14
134 B | 134 chars
#include<iostream>
#include <cstdio> 
using namespace std;
double A,B;
int main()
{
	cin>>A>>B;
	printf("%.6lf",2.0*A+2*3.141592*B);
}