Answer:
import javax.swing.JOptionPane;
public class PresidentEligibility {
public static void main(String[] args) {
String ageInput = JOptionPane.showInputDialog("Please enter your age:");
int age = Integer.parseInt(ageInput);
String citizenshipInput = JOptionPane.showInputDialog("Please enter your citizenship status:");
String citizenship = citizenshipInput.toLowerCase();
if(age >= 35 && citizenship.equals("natural born citizen")) {
JOptionPane.showMessageDialog(null, "You are eligible to be President!");
} else {
JOptionPane.showMessageDialog(null, "Sorry, you are not eligible to be President.");
}
}
}