#include<stdio.h>
int main(){
    float k;
    float h,m;
    scanf("%f %f",&k,&h);
    m=5/18;
    printf("%.2f km/h\n%d m/s\n",k,m);
    
}