#Lutece0961. 点连线
点连线
Migrated from Lutece 961 点连线
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
图论常用点表示实体,实体间的联系用连线表示。今有个实体排成一圈,编号按顺时针分别为、、、、。给出数,表示下数到第个实体与之连线。下面是,时对应的图。
Input
输入有一行,有两个用空格隔开的整数和,其中表示实体数,表示按顺时针下数到第个实体与之连线。,。
Output
输出有一行,每一条连线用点对的形式输出,每个点对后应有一个空格。点对的输出应有序(从第点开始,循环连线的顺序),并且连线不能重复,和算作相同的连线。
Samples
5 2
(1,3) (2,4) (3,5) (4,1) (5,2)
Resources
wxiaoping 2009年C语言第七次上机