#include<stdio.h>
int main(){
    float l,b;
    scanf("%f",&l);
    scanf("%f",&b);
    printf("%.2f",l,b);
    return 0;
}