-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemp.c
67 lines (51 loc) · 1.21 KB
/
temp.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
#define ll long long
#define ld long double
#define ull unsigned long long
#define scn(n) scanf("%d",&n)
#define scnll(n) scanf("%lld",&n)
#define YES printf("YES\n");
#define Yes printf("Yes\n");
#define yes printf("yes\n");
#define NO printf("NO\n");
#define No printf("No\n");
#define no printf("no\n");
#define mod 1000000007LL
#define mod1 1000000007LL
#define mod2 1000000009LL
#define inf 1000000000000000LL
#define N 200000
#define pi 3.14159
#define forn(i, n) for(int i = int(i); i < int(n); i++)
#define mod9 90000007
// * -----------------------------------------------------------
// * run program on cli
// * -----------------------------------------------------------
// gcc temp.c -o temp
// or
// gcc temp.c -o temp.exe
// .\temp.exe
void solve() {
int a, b;
scanf("%d %d", &a, &b);
printf("%d\n", a + b);
YES;
}
int main() {
//* For External input/output
// freopen("input.txt", "r", stdin);
// freopen("output.txt", "w", stdout);
ll t;
scanf("%d", &t);
//* Test case loop
for (ll i = 1; i <= t; i++) {
// printf("Case #%d: ", i);
solve();
}
//* Single test
// solve();
return 0;
}