Files

9 lines
120 B
Plaintext

public class IntPair
{
public int first, second;
public IntPair( int a, int b )
{ first = a; second = b; }
}