fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int a=int.Parse(Console.ReadLine());
  8. if (iseven(a)){
  9. Console.WriteLine("even");
  10. }
  11. else{
  12. Console.WriteLine("odd");
  13. }
  14. }
  15. static bool iseven (int x){
  16. return x%2==0;
  17. }
  18. }
Success #stdin #stdout 0.03s 26316KB
stdin
4
stdout
even