79836171

Date: 2025-12-02 17:29:42
Score: 1
Natty:
Report link

you are missing the & in your scanf() functions, since they require pointers (or an array name)

scanf("%d", a);

should be

scanf("%d", &a);

and

scanf("%d", b);

should be

scanf("%d", &b);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jonathan Serrano