import javax.swing.JOptionPane;
public class Main {
public static void main(String[] args) {
String input = JOptionPane
.showInputDialog("Enter the x coordinate of the circle");
int xc = Integer.parseInt(input);
System.out.println(xc);
}
}