B. Internet Address

來源:互聯網
上載者:User
time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

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:

<protocol>://<domain>.ru[/<context>]

where:

  • <protocol> can equal either "http"
    (without the quotes) or "ftp" (without the quotes),
  • <domain> is a non-empty string, consisting of lowercase English letters,
  • the /<context> part may not be present. If it is present, then <context> is
    a non-empty string, consisting of lowercase English letters.

If string <context> 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

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

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 test(s)input
httpsunrux
output
http://sun.ru/x
input
ftphttprururu
output
ftp://http.ru/ruru
Note

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

解題說明:此題就是把一個去掉分隔字元的網路地址還原,這裡只有http和ftp兩種協議,可以先判斷首字母,然後再定位ru的位置。注意如果協議名後直接跟著ru這時不應該把ru看成是網域名稱尾碼,因為http://.ru/xxxx是一個非法的url,所以要跳過一位尋找。

#include<iostream>#include<map>#include<string>#include<algorithm>#include<cstdio>#include<cmath>using namespace std;int main(){char a[52];int j,i;scanf("%s",&a);if(a[0]=='h'){printf("http://");printf("%c",a[4]);for(i=5;a[i]!='\0';i++){if(a[i]=='r'&&a[i+1]=='u'){break;}printf("%c",a[i]);}printf(".ru");if(a[i+2]!='\0'){printf("/");for(j=i+2;a[j]!='\0';j++){printf("%c",a[j]);}}printf("\n");}else{printf("ftp://");printf("%c",a[3]);for(i=4;a[i]!='\0';i++){if(a[i]=='r'&&a[i+1]=='u'){break;}printf("%c",a[i]);}printf(".ru");if(a[i+2]!='\0'){printf("/");for(j=i+2;a[j]!='\0';j++){printf("%c",a[j]);}}printf("\n");}return 0;}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.