From 73a957278e0904403d3e53908f3bb837ebeb9796 Mon Sep 17 00:00:00 2001 From: Kamlesh Bisht <75537446+kamlesh012@users.noreply.github.com> Date: Tue, 27 Jul 2021 13:13:31 +0530 Subject: [PATCH] Create ABC_202_A.cpp --- ABC_202_A.cpp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 ABC_202_A.cpp diff --git a/ABC_202_A.cpp b/ABC_202_A.cpp new file mode 100644 index 0000000..69cb6f4 --- /dev/null +++ b/ABC_202_A.cpp @@ -0,0 +1,19 @@ +#include +#define int long long +#define mod 1000000007 +#define rep(i,n,s) for(int i=0;i> a >> b >> c; + cout << (7 - a) + (7 - b) + (7 - c) << endl; + +} + +int32_t main() +{ + ios_base::sync_with_stdio(false); + cin.tie(NULL); + solve(); +}