fork download
  1. #include <iostream>
  2. #include <fstream>
  3. using namespace std;
  4.  
  5. int main() {
  6. ifstream fin("produsmaxim.in");
  7. ofstream fout("produsmaxim.out");
  8. int x;
  9. while(cin >> x) {
  10. cout << x << ' ';
  11. int y = x - x % 3;
  12. cout << x / 3 << ' ';
  13. if(x % 3 == 2) {
  14. cout << y / 3 + 1 << ' ' << y / 3 + 1;
  15. } else if(x % 3 == 1) {
  16. cout << y / 3 << ' ' << y / 3 + 1;
  17. } else {
  18. cout << x / 3 << ' ' << x / 3;
  19. }
  20. cout << endl;
  21. }
  22. }
  23.  
Success #stdin #stdout 0s 5284KB
stdin
7 5
stdout
7 2 2 3
5 1 2 2