题解 | #百钱买百鸡问题# 极简
百钱买百鸡问题
http://www.nowcoder.com/practice/74c493f094304ea2bda37d0dc40dc85b
#include <iostream>
using namespace std;
int main()
{
int n;
cin >> n;
cout << "0 25 75" <<endl;
cout << "4 18 78" <<endl;
cout << "8 11 81" <<endl;
cout << "12 4 84" <<endl;
return 0;
}