diff --git a/code1 b/code1 new file mode 100644 index 0000000..7c601d9 --- /dev/null +++ b/code1 @@ -0,0 +1,152 @@ +// #include + +// using namespace std; + +// int main() +// { +// int a=2; +// float b=3.5; +// char c='A'; +// double d=3.56789; +// cout<<"Hello World"<<"\n"; +// cin>>a; +// cout< +// using namespace std; + +// int main(){ +// int i=5; +// i>10 ? cout<<"Greater": cout<<"Smaller"; +// return 0; +// } + +// #include +// using namespace std; +// int main(){ +// int i=5; +// if(i>10){ +// cout<<"Greater"; +// } +// else +// cout<<"Smaller"; +// return 0; +//} + + +// #include +// using namespace std; +// int main() +// { +// int n, reverse=0, rem; +// cout<<"Enter a number: "; +// cin>>n; +// while(n!=0) +// { +// rem=n%10; +// reverse=reverse*10+rem; +// n/=10; +// } +// cout<<"Reversed Number: "< +// using namespace std; + +// int main(){ +// int i=21; +// switch(i){ +// case 10: cout<<"Value is 10"; +// break; +// case 21: cout<<"Value is 21"; +// break; +// default: cout<<"Error"; +// } + + +// return 0; +// } + + + + +// #include //CODING BLOCKS +// using namespace std; + +// int main() +// { +// int n, arr[1000]; +// cout<<"Enter value of n:"; +// cin>>n; +// return 0; +// } + + +// #include +// using namespace std; + +// int main(){ +// int n; +// cin>>n; +// int a=5; +// int d=2; +// int an=0; +// int sn=0; +// an=a+(n-1)*d; +// for(int i=1;i<=n;i++){ + + + +// } + +// return 0; +// } + + +// #include +// using namespace std; + +// int main(){ +// int a=4; +// while(a<10 && a>5){ +// cout<<"Hi\n"; +// a++; +// } + +// return 0; +// } + + + +#include +using namespace std; + +int main(){ + int n; + cin>>n; + + if(n%2==0){ + cout<<"Even "; + } + else + cout<<"Odd "; + + return 0; +} + + + + + + + +