class Second
{
public static void main(String[] args)
{
Second sec = new Second();
sec.add(10,20);
}
public void add(int no1, int no2)
{
//definition or body
}
Result:-
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)