8 lines
129 B
C
8 lines
129 B
C
|
#include <stdlib.h>
|
||
|
#include <stdio.h>
|
||
|
int main(void) {
|
||
|
char a=getchar();
|
||
|
printf("%x\n",getchar());
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|