6 lines
83 B
C

#include <stdint.h>
uint32_t my_add(uint32_t a, uint32_t b) {
return a + b;
}