#include <stdio.h>


int main() {
     int a,  b;
     float c;


     scanf("%d %d %f", &a, &b, &c);
     printf("%d %d %.3f\n", a, b, c);
     return 0;
}

