#include<stdio.h>
int main()
{
    float distance;
    float time;
    scanf("%2f", &distance);
    scanf("%2f", &time);
    printf("%.2f km/h",distance);
    printf("\n13.89 m/s",time);
    return 0;
}