10 lines
110 B
C

#include <stdio.h>
int main(void)
{
printf("%d\n", 7+8*3);
printf("%d\n", (7+8)*3);
return 0;
}