#include <stdio.h> #include <stdlib.h> typedef struct Node { int data; struct Node* next; } Node; int main() { int count, value; scanf("%d", &count); Node* head = (Node*)malloc(sizeof(Node)); Node* current = head; for (int i = 0; i < count; i++) { scanf("%d", &...