// editor1
#include<stdio.h>
int main()
{
    float n;
    scanf("%f",&n);
    float m;
    scanf("%.1f",&m);
    printf("%.2f km/h",n);
    
    
}