// editor4
#include<stdio.h>
int main(){
    float ch;
    scanf("%.2lf",&ch);
    printf("ch:%.2lf",ch);
    return 0;
}