public class Main {
       public static void main(String [] args) {
           String str = "They say 2 + 2 is 4!!";
           System.out.println(str);
           str = str.replaceAll("[^a-zA-Z]"," " );
           System.out.println(str);
       }
}