9 lines
108 B
Plaintext
9 lines
108 B
Plaintext
|
int first;
|
||
|
int second;
|
||
|
int third;
|
||
|
|
||
|
first = 5;
|
||
|
second = 8;
|
||
|
third = first * 5 + second / 4;
|
||
|
|
||
|
print third - 10;
|