int temp = 32;
void setup(){
  pinMode(temp,INPUT);
  Serial.begin(9600);
}
void loop(){
  int g =analogRead(temp);
  Serial.println(g);
}