#include <stdio.h> #include <stdint.h> uint16_t hex_to_uint(const char *str) { // Your logic here return 0; } int main() { char hex[10]; scanf("%s", hex); printf("%u", hex_to_uint(hex)); return 0; }
Test Cases
Test Results
Input
1A3F
Expected Output
6719