var query =
from c in customers
where c.Discount > 3
orderby c.Discount
select new {c.Name, Perc = c.Discount / 100)
