import javax.swing.*;
import java.io.*;

public class ScriviNumeroIntero2 {
  public static void main(String[] args) throws java.io.IOException {
    String stringaNumero = JOptionPane.showInputDialog("Inserisci un numero intero positivo: ");
    int numero = Integer.parseInt(stringaNumero) + 1;

    File fileNumeriOut = new File("numeri.txt");
    PrintWriter streamNumeriOut = new PrintWriter(new FileWriter(fileNumeriOut, true));
    streamNumeriOut.println(numero);
    streamNumeriOut.close();
    System.exit(0);
  }
}