#!/usr/bin/env python
#-*- coding:utf-8 -*-
#google live host
import urllib2
import re
q = re.compile(r'''(?<![\.\d])(?:\d{1,3}\.){3}\d{1,3}(?![\.\d])''')
html = urllib2.urlopen("http://googless.sinaapp.com/index.php").read()
match = q.findall(html)
matchs = []
for i in match:
if i not in matchs:
matchs.append(i)
for id in matchs:
print id