#include <stdio.h>
int main()
{
int a,b;
scanf("%d%d",&a,&b);
if(a<b)
printf("%d",b);
else
printf("%d",a);
return 0;
}
10 5
10
4 7
7
Question 1 Correct Mark 2.00 out of 2.00 Flag question Question text A company has had several incidents involving users downloading unauth...
No comments:
Post a Comment