Can
#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;
}INFO
#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;
}