17 lines
181 B
Java
Executable File
17 lines
181 B
Java
Executable File
class Helper{
|
|
public id(x){
|
|
return(x);
|
|
}
|
|
}
|
|
|
|
class User{
|
|
public test(Integer input1, String input2){
|
|
x;
|
|
x=new Helper();
|
|
a;
|
|
a=x.id(input1);
|
|
b;
|
|
b=x.id(input2);
|
|
|
|
}
|
|
} |