17 lines
165 B
Plaintext
Raw Normal View History

import java.util.Vector;
import java.lang.Boolean;
import java.lang.Object;
2024-03-11 16:16:10 +01:00
class Pair<T, U> {
T x;
U y;
2024-03-11 16:16:10 +01:00
fst () {
return x;
}
2024-03-11 16:16:10 +01:00
snd () {
return y;
}
}