#include<stdio.h>

int main()
{long float a=25.345e454;
unsigned double b=25;

printf("\n%lf%d",a,b);
    return 0;
}