#include <iostream>
#include <regex>
#include <string>
#include <vector>

std::string reg_replace(const std::regex& r, const std::string& s, const std::string& t) {
   return std::regex_replace(s, r, t);
}

int main( ) {
   std::string s;
   std::regex r(R"(\w+(\.\w+)*@\w+(\.\w+)*)");
   while (std::getline(std::cin, s)) {
      std::cout << reg_replace(r, s, "CENSURADO") << "\n";
   }
}

/* Ejemplo de entrada:
hola correo@azc.uam.mx saludos
enviar mensaje,gato.naranja@michis.com,bye
ejemplo abc.xyz@dominio.com.
*/
