// LCD1602 to Arduino Uno connection example
#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 10, 9, 8, 7);
void setup() {
Serial.begin(9600);
float teihen,takasa,x;
Serial.read("%f",teihen);
Serial.read("%f",takasa);
x=sqrt(teuhen*teihen+takasa*takasa);
Serial.println(x);
}
void loop() {
// ...
}