#include <cstdlib>
#include <iostream>
#include <vector>
using namespace std;
int main()
{
int t, n, x, y;
cin >> t;
for (int i = 0;i < t; i++)
{
cin >> n;
for (int j = 0;j < n;j++)
{
cin >> x >> y;
}
cout << "NIE" << endl;
}
return 0;
}
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | #include <cstdlib> #include <iostream> #include <vector> using namespace std; int main() { int t, n, x, y; cin >> t; for (int i = 0;i < t; i++) { cin >> n; for (int j = 0;j < n;j++) { cin >> x >> y; } cout << "NIE" << endl; } return 0; } |
English