#include<stdio.h>
#include<stdlib.h>
#include<ctype.h>
struct Node{
    int data;
    struct Node*next;
};
struct Node*createNode(int value) {
    struct Node* newNode = (struct
    Node*)malloc(sizeof(struct Node));
    newNode->data = value;
    newNode->next = NULL;
    return newNode;
}
 int main() {
     int n,i, valu;
     if(scanf("%d", &n) != 1 || n> 10) {
         printf("Invalid Input");
         return 0;
     }
     struct Node *newNode = createNode(value);
     if (head == NULL) {
         head = newNode;
         temp = head;
 }else{
     temp->next = newNode;
     temp = temp->next;
 }
     }
     temp = head;
     while (temp != NULL) {
         printf("");
     }
     temp = temp->next;
 }
 return 0;
 }