AKOJ正在加载中...

3951: The table

金币值:2 定数:1 时间限制:2.000 s 内存限制:256 M
正确:0 提交:0 正确率:0.00% 命题人:
点赞量:0 收藏量:0 题目类型:程序

题目描述

time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Harry Potter has a difficult homework. Given a rectangular table, consisting of n×m cells. Each cell of the table contains the integer. Harry knows how to use two spells: the first spell change the sign of the integers in the selected row, the second − in the selected column. Harry's task is to make non-negative the sum of the numbers in each row and each column using these spells.

Alone, the boy can not cope. Help the young magician!

Input

The first line contains two integers n and m (1≤n,m≤100) − the number of rows and the number of columns.

Next n lines follow, each contains m integers: j-th integer in the i-th line is ai,j (|ai,j|≤100), the number in the i-th row and j-th column of the table.

The rows of the table numbered from 1 to n. The columns of the table numbered from 1 to m.

Output

In the first line print the number a − the number of required applications of the first spell. Next print a space-separated integers − the row numbers, you want to apply a spell. These row numbers must be distinct!

In the second line print the number b − the number of required applications of the second spell. Next print b space-separated integers − the column numbers, you want to apply a spell. These column numbers must be distinct!

If there are several solutions are allowed to print any of them.

Examples
Input
4 1
-1
-1
-1
-1
Output
4 1 2 3 4 
0
Input
2 4
-1 -1 -1 2
1 1 1 1
Output
1 1 
1 4