i write code with class f that
have constructor :
public f(int number){
this.number=number;
}
i want to write method that get one f then add it with f which the method was called on it
public void add(f number)
{
//the code
}
what is the code????