28 lines
344 B
Plaintext
28 lines
344 B
Plaintext
void
|
|
output(integer a, integer b, text condition)
|
|
{
|
|
o_integer(a);
|
|
o_text(condition);
|
|
o_integer(b);
|
|
o_byte('\n');
|
|
}
|
|
|
|
|
|
integer
|
|
main(void)
|
|
{
|
|
if (a < b) {
|
|
output(a, b, " is less then ");
|
|
}
|
|
|
|
if (a == b) {
|
|
output(a, b, " is equal to ");
|
|
}
|
|
|
|
if (a > b) {
|
|
output(a, b, " is greater than ");
|
|
}
|
|
|
|
return 0;
|
|
}
|