Help me in solving CLB054 problem

My issue

Write a program which does the following Declare an integer variable a Try taking a number from the console and assign it to a Output a to the console in C programming

My code

#include <stdio.h>

int main(void) {
    int a=76;
    scanf("%d",&a);
    printf(" Your number is:%d",a);
	return 0;
}

Learning course: Learn C
Problem Link: CodeChef: Practical coding for everyone

@debaratik
U have to do it like this.

#include <stdio.h>

int main() {

  int a;
  scanf("%d", &a);
  printf("Your number is: %d", a);

  return 0;
}