#include<stdio.h> #include<stdlib.h> typedef struct node{ int value; struct node* next; }Node; int main(){ int a; scanf("%d",&a); int i,x; Node* head=NULL; Node* p=NULL; fo...