Coding is the closest thing we have to superpower !
给定两行整数。数对中的第一个数来自第一行,第二个数来自第二行,请你找到两数相加和最大的数对。
输入三行。第一行输入两个整数n,m。
第二行输入 n 个整数 a_{i} 。 第三行输入 m 个整数 b_{i} 。 \left(1 \leq n, m \leq 100,1 \leq a_{i}, b_{i} \leq 100\right)
一个整数。
2 3 1 2 1 2 3
5