#include <string.h>
#include <stdio.h>
#include <stdlib.h>

int main(void)
{
    const char r[] = "192.168.1.200",
               w[] = "emilracovita.no-ip.org";
    char s[512], *p, *l;

    fgets(s, sizeof s - (sizeof w - sizeof r), stdin);
    l = strstr(s, r);

    for (p = s + strlen(s) + 1; p != l; --p) {
        *p = *(p - 1);
        puts(s);
    }
    strncpy(p, w, sizeof w - 1);

    puts(s);

    return EXIT_SUCCESS;
}
