0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 16:45:25 +00:00
OI-codes/Codeforces/1551/A/A.cpp

21 lines
391 B
C++
Raw Permalink Normal View History

2021-07-24 00:35:43 +00:00
#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;
}