Help me in solving GSCP16 problem

My issue

how I go next round

My code

// Debug the given code

#include <stdio.h>

int main() {
    int t;
    int N;
    int i = 1;
    scanf("%d", &t );
    while ( i <= t) 
        scanf("%d", &N);
        printf("%d\n", 2*N );
        i = i+1;
  return 0;
}

Learning course: Logic Building in C
Problem Link: CodeChef: Practical coding for everyone

@sakshi1200
U have to put thing inside while loop in curly brackets.
like this.

// Debug the given code

#include <stdio.h>

int main() {
    int t;
    int N;
    int i = 1;
    scanf("%d", &t );
    while ( i <= t) 
    {
        scanf("%d", &N);
        printf("%d\n", 2*N );
        i = i+1;
    }
  return 0;
}