forked from JavaTX/JavaCompilerCore
12 lines
151 B
Java
Executable File
12 lines
151 B
Java
Executable File
class otth8
|
|
{
|
|
int add( int x, int y )
|
|
{
|
|
return x + y;
|
|
}
|
|
|
|
int mul( int x, int y )
|
|
{
|
|
return x * y;
|
|
}
|
|
} |