Repair this code
Repair print_pair so it prints count and total on one line, each with a format specifier that matches its type.
Steps
$ print_pair(3, 42)
3 42
$ print_pair(0, -17)
0 -17
$ print_pair(SIZE_MAX, LONG_MAX)
18446744073709551615 9223372036854775807
Expected files
Allowed functions

Repair this code
Repair print_pair so it prints count and total on one line, each with a format specifier that matches its type.
Steps
$ print_pair(3, 42)
3 42
$ print_pair(0, -17)
0 -17
$ print_pair(SIZE_MAX, LONG_MAX)
18446744073709551615 9223372036854775807
Expected files
Allowed functions

Tests
Run the tests to grade your code