0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 01:45:25 +00:00
OI-codes/Codeforces/1551/A/A.cpp
2022-09-25 20:39:35 +08:00

21 lines
391 B
C++

#include <bits/stdc++.h>
using namespace std;
int t, n;
int main() {
cin >> t;
while (t--) {
cin >> n;
if (n % 3 == 2) {
cout << n / 3 << ' ' << n / 3 + 1 << endl;
} else if (n % 3 == 1) {
cout << n / 3 + 1 << ' ' << n / 3 << endl;
} else {
cout << n / 3 << ' ' << n / 3 << endl;
}
}
return 0;
}