Advertisement
mustahidhasan

even or not

Feb 20th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.20 KB | None | 0 0
  1. #include<stdio.h>
  2.  
  3. int main(){
  4.  
  5.  
  6.     int a;
  7.     scanf("%d", &a);
  8.     if(a % 2 == 0){
  9.         printf("Hakuna Matata\n");
  10.  
  11.     }else{
  12.         printf("Tatata Bala tu\n");
  13.     }
  14.  
  15.     return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement