Skip to content

Commit

Permalink
Create ABC_202_A.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
kamlesh012 authored Jul 27, 2021
1 parent 6aa5d4c commit 73a9572
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions ABC_202_A.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#include <bits/stdc++.h>
#define int long long
#define mod 1000000007
#define rep(i,n,s) for(int i=0;i<n;i+=s)
using namespace std;
void solve()
{
int a, b, c;
cin >> a >> b >> c;
cout << (7 - a) + (7 - b) + (7 - c) << endl;

}

int32_t main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
solve();
}

0 comments on commit 73a9572

Please sign in to comment.