#include <iostream>
using namespace std;
int main()
{
int n, L = 1;
cin >> n;
long long *a = new long long[n], *r = new long long[n];
for (int i=0;i<n;++i)
{
cin >> a[i] >> r[i];
}
cout << 2137 << endl;
delete[] a;
delete[] r;
return 0;
}
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #include <iostream> using namespace std; int main() { int n, L = 1; cin >> n; long long *a = new long long[n], *r = new long long[n]; for (int i=0;i<n;++i) { cin >> a[i] >> r[i]; } cout << 2137 << endl; delete[] a; delete[] r; return 0; } |
English