-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractice.cpp
More file actions
128 lines (105 loc) · 2.51 KB
/
Copy pathpractice.cpp
File metadata and controls
128 lines (105 loc) · 2.51 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
// #include<bits/stdc++.h>
// using namespace std;
// int MissingNo(int arr[], int n) {
// int x1 = arr[0];
// int x2 = 1;
// for (int i = 1; i < n; i++)
// x1 = x1 ^ arr[i];
// for (int i = 2; i <= n + 1; i++)
// x2 = x2 ^ i;
// return (x1 ^ x2);
// }
// vector<int> spirallyTraverse(vector<vector<int> > matrix, int r, int c)
// {
// // code here
// vector <int> ans;
// // int row = matrix.size();
// // int col = matrix[0].size();
// int count = 0;
// int total = r*c-1;
// int sr = 0;
// int sc = 0;
// int er = r -1;
// int ec = c -1;
// while(count <= total)
// {
// // starting row
// for(int index = sc; count < total && index<=ec;index++)
// {
// ans.push_back(matrix[sr][index]);
// count++;
// }
// sr++;
// // ending col
// for(int index=sr;count < total && index>=er;index++)
// {
// ans.push_back(matrix[index][ec]);
// count++;
// }
// ec--;
// //ending row
// for(int index=ec;count < total && index>=sc;index--)
// {
// ans.push_back(matrix[er][index]);
// count++;
// }
// er--;
// //starting col
// for(int index = er;count < total && index>=sr;index--)
// {
// ans.push_back(matrix[index][sc]);
// count++;
// }
// sc++;
// }
// return ans;
// }
// int main()
// {
// // int arr[] = {1,2,3,4,5,6,7,8,10};
// // vector<vector<int> > v= {{1, 2, 3, 4},{5, 6, 7, 8},{9, 10, 11, 12},{13, 14, 15,16}};
// // spirallyTraverse(v,4,4);
// string s;
// cin>>s;
// for(int i=0;i<s.length();i++)
// {
// if(s[i]=='1')
// {
// s[i] = '0';
// }
// }
// cout<<s<<endl;
// // cout<<MissingNo(arr,9)<<endl;
// }
// #include<bits/stdc++.h>
// using namespace std;
// int sumofno(int n,int sum){
// //base case
// if(n==0){
// return sum;
// }
// // int sum = 0;
// sum = n + sumofno(n-1,sum);
// return sum;
// }
// int main()
// {
// int a = 4;
// int sum = 0;
// cout<<sumofno(a,sum)<<endl;
// return 0;
// }
#include<bits/stdc++.h>
using namespace std;
int main()
{
vector<int> v;
int n;
cin>>n;
int count = 0;
count++;
if(n%2==0 && count==0)
cout<<"Sabhya Chinaal"<<endl;
cout<<"Ankit Randi"<<endl;
return 0;
}