void setup() {
// put your setup code here, to run once:
pinMode(13,OUTPUT );
pinMode(A0,INPUT);
}
void loop() {
// put your main code here, to run repeatedly:
int x=analogRead(A0);
digitalWrite(13,HIGH);
delay(x);
digitalWrite(13, LOW);
delay(x);
}