App adder(){
int value1 = 1;
int value2 = 2;
print("total" + intToString(value1 + value2));
return 0;
}