14 lines
161 B
C

#include <stdio.h>
int main(void)
{
int a = 5;
int b = 10;
if (a < b)
{
printf ("%d är mindre än %d\n", a, b);
}
return 0;
}