def valuta_aria(ppm):

    if ppm < 0.10:
        return "bianco"
    else:
        return "blu"
