cpt=0 for n in range(1,501): if ('2' in str(n) or '3' in str(n)) and ('4' in str(n) or '5' in str(n)): cpt += 1 print(cpt)
cevap 124