ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1685. Orthography

What is answer to "один глаз, один рог, но не носорог"?
Posted by silveracm3 8 Sep 2009 11:31
What is "г рковоаззи- аул лаывгвдяыеат"?
I have no desire to suffer with Russian letters in the console.
Re: What is answer to "один глаз, один рог, но не носорог"?
Posted by Snetkov_Mishka 17 Sep 2009 13:27
Answer: "корова из-за угла выглядывает".
Translated by Google: "cow from behind a corner peeps".

Sorry for my bad English :)
Re: What is answer to "один глаз, один рог, но не носорог"?
Posted by IgorKoval(from Pskov) 7 Oct 2011 19:29
#include <iostream>
#include <string>
#include <windows.h>
using namespace std;

string s;
string f( long b, long e ){
//lalalalalala
}
int main(){
    #ifndef ONLINE_JUDGE
   freopen("input.txt", "rt", stdin);
   freopen("output.txt", "wt", stdout);
#endif
    SetConsoleCP(1251);
    SetConsoleOutputCP(1251);
    s = "г рковоаззи- аул лаывгвдяыеат";
    cout << f( 0, s.size()-1 ) << endl;
    return 0;
}