merkator

1639

Oct 2nd, 2012
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.20 KB | None | 0 0
  1. #include<cstdio>
  2.  
  3. int main () {
  4.     int a,b;
  5.     scanf("%d%d", &a,&b);
  6.     if ((a%2==0) || (b%2==0)){
  7.         printf("[:=[first]");
  8.     }
  9.     if ((a%2==1) && (b%2==1)) {
  10.         printf("[second]=:]");
  11.     }
  12.     return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment