Advertisement
Guest User

Untitled

a guest
Dec 6th, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Alex
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. int a, b;
  10. Console.Write("Enter A: ");
  11. a = Int32.Parse(Console.ReadLine());
  12. Console.Write("Enter B: ");
  13. b = Int32.Parse(Console.ReadLine());
  14.  
  15.  
  16. if (a % 2 != 0 && b % 2 != 0)
  17. {
  18. Console.WriteLine("True.");
  19. }
  20. else
  21. {
  22. Console.WriteLine("False");
  23. }
  24. }
  25. }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement