Help me in solving CLB102 problem

My issue

Y run time erorr

My code

#include <stdio.h>

int main() {
    int n,x,fact=1;
    printf("Enter a number to find Factorial:");
    scanf("%d", & n);
    for(x=1;x<=n;x++)
    fact=fact*x;
    printf(n,fact);
    return 0;
}

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

for(x=1;x<=n;x++)
    fact=fact*x;
``
You have not used {} curly braces here.

printf(n,fact);

You have not used "" quotations here