B. Internet address

Source: Internet
Author: 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 authentication SS 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 ".

Solution Description: This is to restore a network address that removes the separator. Here there are only two Protocols: HTTP and FTP. You can first determine the first letter and then locate the location of the Ru. Note: If the protocol name is followed by the RU directly, you should not regard the RU as a domain name suffix, because http: //. ru/XXXX is an invalid URL, so you need to skip a bit of search.

#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;}
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.