Saturday, August 27, 2016

UVa 12461 - Airplane

#include<bits/stdc++.h>

using namespace std;

int main()
{
 int n;
 while(cin>>n)
 {
  if(n==0) break;
  cout<<"1/2"<<endl;
 }
 return 0;
}

No comments:

Post a Comment

Thank you for commenting. Please wait for response :)