float pi = 3.14;
int radius = 14;
void setup()
{
Serial.begin(9600); // put your setup code here, to run once:
Serial.print("lenght =");
Serial.print(2*pi*radius);
Serial.print("cm");
}
void loop() {
// put your main code here, to run repeatedly:
}