A. Odd One Out

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

You are given three digits a�, b�, c�. Two of them are equal, but the third one is different from the other two.

Find the value that occurs exactly once.

Input

The first line contains a single integer t� (1≤t≤2701≤�≤270) — the number of test cases.

The only line of each test case contains three digits a�, b�, c� (0≤a0≤�, b�, c≤9�≤9). Two of the digits are equal, but the third one is different from the other two.

Output

For each test case, output the value that occurs exactly once.

Example

input

Copy


  

10

1 2 2

4 3 4

5 5 6

7 8 8

9 0 9

3 6 3

2 8 2

5 7 7

7 7 5

5 7 5

output

Copy

1
3
6
7
0
6
8
5
5
7

解题说明:三个数中两个数一样,找出另一个数,水题,直接比较即可。

#include<stdio.h>

int main(void)
{
	int t, a, b, c;
	scanf("%d", &t);
	while (t--)
	{
		scanf("%d%d%d", &a, &b, &c);
		printf("%d\n", a == b ? c : a == c ? b : a);
	}
	return 0;
}

相关推荐

最近更新

  1. TCP协议是安全的吗?

    2024-01-01 03:32:02       18 阅读
  2. 阿里云服务器执行yum,一直下载docker-ce-stable失败

    2024-01-01 03:32:02       19 阅读
  3. 【Python教程】压缩PDF文件大小

    2024-01-01 03:32:02       18 阅读
  4. 通过文章id递归查询所有评论(xml)

    2024-01-01 03:32:02       20 阅读

热门阅读

  1. sublime汉化教程

    2024-01-01 03:32:02       40 阅读
  2. Redis布隆过滤器

    2024-01-01 03:32:02       35 阅读
  3. 使用nodejs对接arXiv文献API

    2024-01-01 03:32:02       36 阅读
  4. MySQL的事务隔离级别

    2024-01-01 03:32:02       38 阅读
  5. 机器学习(三) -- 特征工程(更新中)

    2024-01-01 03:32:02       35 阅读