void setup() {
  // put your setup code here, to run once:
  Serial.begin(9600);
  int re = pFuncR();
  Serial.println(re);
}

void loop() {
  // put your main code here, to run repeatedly:

}



int pFuncR() {
  int a=2, b=3;
  return a*b;

}