#include <stdio.h>
int main() {
int X=99;
float b=10.00;
printf("%c\n",'A');
printf("%d",'X');
printf("%f",'b');
return 0;
}