mirror of https://github.com/aamine/cbc
10 lines
133 B
Plaintext
10 lines
133 B
Plaintext
|
import stdio;
|
||
|
|
||
|
int
|
||
|
main(int argc, char **argv)
|
||
|
{
|
||
|
printf("%d;%d;%d", (5 == 3), (5 == 5), (3 == 5));
|
||
|
puts("");
|
||
|
return 0;
|
||
|
}
|