Help me in solving RCPITCP22 problem

My issue

Please help

My code

#include <stdio.h>

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


Learning course: Learn C Programming
Problem Link: https://www.codechef.com/learn/course/rcpit-programming-c/RCPITLPC04/problems/RCPITCP22

correct code

include <stdio.h>

int main() {
// Print the result of 9 - 2

printf("%d",9-2);
// Print the result of 30 / 5
printf("%d",30/5);

}

correction: add \n like this ā€œ%d\nā€ so you will get output on separate lines