File tree Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change 453
453
| 157 | [ 악마의 제안] ( https://www.acmicpc.net/problem/23972 ) | [ cpp] ( source/23972.cpp ) | 158 | [ 스물셋] ( https://www.acmicpc.net/problem/23251 ) | [ cpp] ( source/23251.cpp ) |
454
454
| 159 | [ 고고학자 예린] ( https://www.acmicpc.net/problem/20953 ) | [ cpp] ( source/20953.cpp ) | 160 | [ Next in line] ( https://www.acmicpc.net/problem/6749 ) | [ cpp] ( source/6749.cpp ) |
455
455
| 161 | [ Balanced String] ( https://www.acmicpc.net/problem/17520 ) | [ cpp] ( source/17520.cpp ) | 162 | [ 괴짜 교수] ( https://www.acmicpc.net/problem/11109 ) | [ cpp] ( source/11109.cpp ) |
456
+ | 163 | [ 주사위] ( https://www.acmicpc.net/problem/9295 ) | [ cpp] ( source/9295.cpp ) | | | |
456
457
457
458
</details >
458
459
Original file line number Diff line number Diff line change
1
+ // 9295. 주사위
2
+ // 2022.04.17
3
+ // 수학
4
+ #include < iostream>
5
+
6
+ using namespace std ;
7
+
8
+ int main ()
9
+ {
10
+ int t;
11
+ cin >> t;
12
+ int n, m;
13
+ for (int i = 1 ; i <= t; i++)
14
+ {
15
+ cin >> n >> m;
16
+ cout << " Case " << i << " : " << n + m << " \n " ;
17
+ }
18
+ return 0 ;
19
+ }
You can’t perform that action at this time.
0 commit comments