#include <stdio.h>

int main(void) {
	int number;
	float floating= number;
	printf("please enter number: ");
	scanf("%d",&number);
	printf("\n the original number is %d ",number);
    printf("\n the flouting number is %f",floating);
    printf("\n the floating number is %f",(float)number);
  
 
 return 0;
}
