Help me in solving CLB018 problem

My issue

How touse division

My code

#include <stdio.h>

int main() {
	// Print the result of 9/2
	
	
	// Print the result of 30/5
	
	
}


Learning course: Programming and Problem solving using C
Problem Link: https://www.codechef.com/learn/course/ciet-programming-c/CIETPC04/problems/CLB018

include <stdio.h>
int main() {
float d1=9/2;
float d2= 30/5;
printf(“%f \n %f”,d1,d2);

return 0;
}

you can can the data type from float to int