Uva 12461 Solution

#include<bits/stdc++.h>
using namespace std;
int main()
{
int n;
while(cin >> n && n != 0)
{
cout << "1/2" << "\n";
}

return 0;
}

Comments