#include <stdio.h>
#include <stdlib.h>
#include <string.h>

char d[512];
char buf[256];
int da;

int main() {
printf("Witaj w obliczaczu liczb szesnastkowych\n");
printf("Podaj liczbe szesnastkowa i nacisnij enter: ");
scanf("%d",d);
printf("Podales liczbe: %c%d%c\n",'"',d,'"');
}
