Advertisement
Raddia_Akter_Hride

problem_1

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