Our company's profile is the wholesale and manufacture of mechanical insulation materials.

The company is based in Székesfehérvár (Hungary), where we supply the Hungarian market from our newly built high-bay warehouse.

Our philosophy is to maintain a high stock of all products we sell, so that we can guarantee a continuous supply to our partners.

Our products meet all European and American UL standards.

The range of our own products as well as the turnover of our polyurethane products is growing dynamically year by year.

We belong to the TOP3 European manufacturers of pipe clamp inserts.

Ask our experts for help!

Product samples, technical details and tailored solutions

ember

Where we have already delivered

Map EN Placeholder
Map EN
				
					my_list = []
while True:
    word = input("Word:\n")
    if word == "exit":
        break
    if word != "" and word[-1] != "a":
        my_list.append(word)
for idx in range(len(my_list)):
    print(f"{idx + 1}. word: {my_list[idx]} ({len(my_list[idx])}) ")
length = int(input("Length:\n"))
found = False
for i in range(len(my_list)):
    if len(my_list[i]) >= length:
        print(f"The first word with at least {length} characters is {my_list[i]} at index {i}")
        found = True
        break
if not found:
    print(f"No words with at least {length} characters!")
word2 = input("Search:\n")
my_list2 = []
for w in my_list:
    if word2 in w:
        my_list2.append(w)
print(f"Result: {my_list2}")

				
			
				
					my_list = []
while True:
    number = input("Number or (q)uit:\n")
    if number == "q":
        break
    number = int(number)
    if number > 0 and number % 3 != 0:
        my_list.append(number)
if len(my_list)==0:
    print("No numbers in the list!")
if len(my_list)==1:
    print(f"There's a single element in the list: {my_list[0]}")
if len(my_list)>1:
    print(f"Elements in the list: {my_list}")
search=int(input("Search:\n"))
if search in my_list:
    print("Found!")
else:
    print("Not found!")
if len(my_list)>=1:
    sum_list=sum(my_list)
    print(f"Sum of numbers: {sum_list}")
    averige=sum_list/len(my_list)
    print(f"Avg of numbers: {averige}")

				
			
				
					while True:
    strings=int(input("Number of strings:\n"))
    if strings>0:
        break
    else:
        print("Try again!")
    continue
words=[]
for i in range(strings):
    inputs=input(f"Input {i+1}:\n")
    if " " not in inputs:
        words.append(inputs)
for i in range(len(words)):
        print(f"{i+1}. {words[i]}")
search=input("Search:\n")
if search in words:
    print("Found!")
else:
    print("Not found!")
count=0
for word in words:
    if word[0] in ['a', 'e', 'o'] and 3<=len(word) <= 5:
        count+=1
print(f"Counter: {count}")