9 lines
117 B
C

#include <stdio.h>
int main(void)
{
if (5 == (3+2))
printf("5 är detsamma som 3+2\n");
return 0;
}