#include <stdio.h>

int main() {
float n = 10.0;
int m = 10;
char
printf("A");
printf( "%f\n",n);
printf( "%d",m);
return 0;
}