Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- int main()
- {
- int a,b;
- printf("wpisz 2 liczb całkowite:\n");
- scanf("%d%d", &a,&b);
- if (a>b)
- printf("a > b");else
- if (a<b)
- printf("a < b");
- else
- printf("a = b");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement