Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main()
- {
- int x, y;
- scanf("%d %d", &x, &y);
- if (x>y)
- {
- printf("%d\n", x);
- }
- else
- {
- printf("%d\n", y);
- }
- return 0;
- }
- /* No type check */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement