#include <stdio.h>
int add_two_void_pointers(void *a, void *b) {
// Your logic here
int temp;
temp = (int)(*((int*)(a)) + *((int*)(b)));// typecast with specific type of (int/char)address
return temp; //and then access it.
}
int main() {
int x, y;
scanf("%d %d", &x, &y);
int result = add_two_void_pointers(&x, &y);
printf("%d", result);
return 0;
}