Help me in solving GSCP003 problem: where is n=6 defined?

My issue

Hi, i don’t get how the code gives 6 as output for the defined integer n.
There is nowhere in the code defined that n=6 ?

My code

//update the _ in the code
#include <stdio.h>

int main() {
    int n;
    scanf("%d", &n );
    printf("%d", n );
  
    return 0;
}

Learning course: C for problem solving - 1
Problem Link: CodeChef: Practical coding for everyone

Ah, nevermind ! I didn’t recognize that scanf is the function that “gives” n a value.

@cbannier34
The user will give the input 6 since u are taking input as scanf and stores it in n.
the print the value of n which will be 6 .If u take input as 10 it will print 10.