#include <iostream>#include <cstdio>#include <string>using namespace std;int main(){ int n,count,i,first; string t,s; count=1; cin>>n; while( n-- ) { cin>>s; cout<<"URL #"<<count<<endl; t=""; i=0; while( s[i]!=':' ) t+=s[i++]; cout<<"Protocol = "<<t<<endl; t=""; i+=3; while( i<s.size() && s[i]!=':' && s[i]!='/' ) t+=s[i++]; cout<<"Host = "<<t<<endl; t=""; if( i==s.size() ) { cout<<"Port = <default>n"; cout<<"Path = <default>n"; } else if( s[i]==':' ) { i++; while( i<s.size() && s[i]!='/' ) t+=s[i++]; cout<<"Port = "<<t<<endl; t=""; if( i==s.size() ) cout<<"Path = <default>n"; else { i++; while( i<s.size() ) t+=s[i++]; cout<<"Path = "<<t<<endl; } } else { cout<<"Port = <default>n"; i++; while( i<s.size() ) t+=s[i++]; cout<<"Path = "<<t<<endl; } cout<<endl; count++; } return 0;}