8 lines
127 B
C
8 lines
127 B
C
|
#include "mathtest.h"
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int main(int argc, char **argv) {
|
||
|
printf("%d\n", add(42, 1137));
|
||
|
return 0;
|
||
|
}
|