Skip to content

Instantly share code, notes, and snippets.

@rigibun
Created June 18, 2013 17:05
Show Gist options
  • Save rigibun/5807263 to your computer and use it in GitHub Desktop.
Save rigibun/5807263 to your computer and use it in GitHub Desktop.
#include<iostream>
using namespace std;
int main(void){
int n;
cin >> n;
if(n&1) cout << "Red" << endl;
else cout << "Blue" << endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment