1
object You = new You(DNA);
2
3
if(You.IQ <= 90 || You.IQ == 250)
4
{
5
Consol.Write("Dot not talk with me");
6
}
7
else
8
{
9
if(You.Sex == Person.Sex.Male)
10
Consol.Write("talk");
11
else
12
Consol.Write("talk and talk");
13
}

2

3

4

5

6

7

8

9

10

11

12

13
