Import javax.swing.JOptionPane;
class MyClass{
int number;
char symbol;
void set(int n,char s){
number=n;
symbol=s;
}
}
String getInfo(){