3808.Internet Address

Time Limit: 1s Memory Limit: 256MB

Vasya is an active Internet user. One day he came across an Internet resource he liked, so he wrote its address in the notebook. We know that the address of the written resource has format:
\lt protocol \gt :// \lt domain \gt .ru[/ \lt context \gt ]
where:
\lt protocol \gt can equal either "http" (without the quotes) or "ftp" (without the quotes), \lt domain \gt is a non-empty string, consisting of lowercase English letters, the / \lt context \gt part may not be present. If it is present, then \lt context \gt is a non-empty string, consisting of lowercase English letters.
If string \lt context \gt isn't present in the address, then the additional character "/" isn't written. Thus, the address has either two characters "/" (the ones that go before the domain), or three (an extra one in front of the context).

When the boy came home, he found out that the address he wrote in his notebook had no punctuation marks. Vasya must have been in a lot of hurry and didn't write characters ":", "/", ".".

Help Vasya to restore the possible address of the recorded Internet resource.

Input Format(From the terminal/stdin)

The first line contains a non-empty string that Vasya wrote out in his notebook. This line consists of lowercase English letters only.

It is guaranteed that the given string contains at most 50 letters. It is guaranteed that the given string can be obtained from some correct Internet resource address, described above.

Output Format(To the terminal/stdout)

Print a single line - the address of the Internet resource that Vasya liked. If there are several addresses that meet the problem limitations, you are allowed to print any of them.

Sample Input 1

Copy
httpsunrux
          \n

Sample Output 1

Copy
http://sun.ru/x
               \n

Sample Input 2

Copy
ftphttprururu
             \n

Sample Output 2

Copy
ftp://http.ru/ruru
                  \n

Hints

In the second sample there are two more possible answers: "ftp://httpruru.ru" and "ftp://httpru.ru/ru".

Submit

请先 登录

© 2025 FAQs