- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcabbage.cpp
More file actions
Latest commit
30 lines (22 loc) · 439 Bytes
/
Copy pathcabbage.cpp
File metadata and controls
30 lines (22 loc) · 439 Bytes
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
//
// cabbage.cpp
// CL
//
// Created by 조유빈 on 13/09/2019.
// Copyright © 2019 조유빈. All rights reserved.
//
#include"cabbage.hpp"
int bug = 0;
int num_test_case = 0;
int bat[50][50] = {0};
int horizon = 0;
int vertical = 0;
intmain()
{
scanf("%d",&num_test_case);
scanf("%d",&horizon);
scanf("%d",&vertical);
printf("%d",num_test_case);
printf("%d",horizon);
return0;
}