void setup()
{
int x,y,s;
Serial.begin(9600);
x=20;
y=40;
s=x+y;
Serial.println("Sum of two no.=",s)
}
void loop() {
// put your main code here, to run repeatedly:
}
void setup()
{
int x,y,s;
Serial.begin(9600);
x=20;
y=40;
s=x+y;
Serial.println("Sum of two no.=",s)
}
void loop() {
// put your main code here, to run repeatedly:
}