7 lines
64 B
Plaintext
7 lines
64 B
Plaintext
|
class Add
|
||
|
{
|
||
|
int add(int a, int b)
|
||
|
{
|
||
|
return a + b;
|
||
|
}
|
||
|
}
|