Skip to content

Commit 173c70b

Browse files
committed
Added 1081A - Definite Game.cpp
1 parent 5cf89a0 commit 173c70b

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

1081A - Definite Game.cpp

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#include<bits/stdc++.h>
2+
using namespace std;
3+
4+
// Code Written By: Vikash Patel
5+
6+
// Codeforces Profile: https://codeforces.com/profile/vikashpatel
7+
8+
int main()
9+
{
10+
int v;
11+
cin>>v;
12+
if(v==2)
13+
cout<<2<<endl;
14+
else
15+
cout<<1<<endl;
16+
}

0 commit comments

Comments
 (0)