minic/tests/17.test

13 lines
121 B
Plaintext

int main()
{
int a = 3;
int b = 4;
if (a == b) {
puts("true");
} else {
puts("false");
}
return 0;
}