Kawsar_Hossain

problem_1

May 22nd, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.31 KB | None | 0 0
  1. //Problem-1
  2. #include<stdio.h>
  3. int main()
  4. {
  5.     int a,b;
  6.     scanf("%d %d", &a,&b);
  7.     if(a>b)
  8.         printf("A is maximum between the two numbers\n");
  9.     else if(a<b)
  10.         printf("B is maximum between the two numbers\n");
  11.     else if(a==b)
  12.         printf("Both A & B are equal\n");
  13.     return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment