#Zadanie 1:
iloczyn, suma = 1,0
for liczba in range(1,12):
if liczba%2!=0:
iloczyn *= liczba
suma += liczba
print(iloczyn)
print(suma)
#Zadanie 2:
for liczba in range(10,31):
if liczba%4!=0:
print(liczba)
#Zadanie 3:
temp_f = float(input("Podaj temperaturę (Fahrenheit): "))
temp_c = round((temp_f-32)*5/9,2)
print("Temperatura w stopniach Fahrenheita:",temp_f)
print("Temperatura w stopniach Celcjusza:",temp_c)