Advertisement
Tanmoy12393

Untitled

May 24th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.23 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     int a,b;
  5.  
  6.     scanf("%d %d",&a,&b);
  7.  
  8.     if(a>b){
  9.         printf("Maximum number is %d\n",a) ;
  10.     }
  11.     else if(a<b){
  12.         printf("maximum number is %d\n",b);
  13.     }
  14.     return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement