#include <iostream>
using namespace std;
int g,m,x;
int main()
{
for (g=0;g<=100;g++)
for (m=0;m<=100;m++)
for (x=0;x<=100;x++)
if ((g+m+x==100) && (g*3+m+float(x)/3==100))
cout <<g<<' '<<m<<' '<<x<<endl;
#include <iostream>
using namespace std;
int g,m,x;
int main()
{
for (g=0;g<=100/3;g++)
for (m=0;m<=100;m++)
{
x=100-g-m;
if (g*3+m+float(x)/3==100)
cout <<g<<' '<<m<<' '<<x<<endl;
}