13 lines
136 B
Plaintext
13 lines
136 B
Plaintext
{
|
|
int hey;
|
|
int sup;
|
|
|
|
hey = 15;
|
|
sup = 20;
|
|
|
|
if(hey < sup) {
|
|
print hey;
|
|
} else {
|
|
print sup;
|
|
}
|
|
} |