class Solution:
    def solve(self , IP: str) -> str:
        # write code here
        def isValid4(s):
            lst = s.split('.')
            if len(lst) != 4:
                return False
            for num in lst:
                if not num:
                    return False
                if not num.isdigit():
                    return False
                if int(num) != 0 and num[0] == '0':
                    return False
                if int(num) < 0 or int(num) > 255:
                    return False
            return True
        
        def isValid6(s):
            lst = s.split(':')
            if len(lst) != 8:
                return False
            for num in lst:
                if not num:
                    return False
                if len(num) > 4:
                    return False
                for c in num:
                    if c.isalpha():
                        if ord('f') < ord(c) <= ord('z') or ord('F') < ord(c) <= ord('Z'):
                            return False
            return True
        
        if isValid4(IP): return 'IPv4'
        elif isValid6(IP): return 'IPv6'
        else: return 'Neither'