#include <stdio.h>
int main()
{
double a,b,c;
scanf("%lf %lf %lf",&a,&b,&c);
printf("%d %d %d",(int)a,(int)b,(int)c);
return 0;
}