//问题:给出两个链表(N、M),输入数据,将其合并成为一个链表
#include<stdio.h>
#include<stdlib.h>
using namespace std;
typedef struct Node
{
int id;
Node* next;
};
Node *Creat_List(int n);
void print_List(Node* L);
Node* Merge(Node* A, Node* B, int n, int m);
void main()
{
int N, M;