3WA。。。

/* UVa10055 Hashmat */
# include <stdio.h>
int main()
{
unsigned long a, b;
while (scanf("%ld%ld", &a, &b) != EOF)
printf("%ld\n", (a<b ? b-a:a-b));
return 0;
}

相关文章:

  • 2022-01-16
  • 2022-02-09
  • 2022-01-10
  • 2021-10-14
  • 2021-12-13
  • 2021-04-16
  • 2021-09-26
猜你喜欢
  • 2021-06-10
  • 2022-12-23
  • 2021-10-02
  • 2022-01-04
  • 2021-06-09
  • 2021-09-20
相关资源
相似解决方案