diff --git a/CodeForces/three_piles_of_candies.cpp b/CodeForces/three_piles_of_candies.cpp new file mode 100644 index 0000000..facd734 --- /dev/null +++ b/CodeForces/three_piles_of_candies.cpp @@ -0,0 +1,13 @@ +#include +using namespace std; +int main(){ + int t; + long long m, n, r; + cin>>t; + for(int i = 0; i < t; i++) { + cin>>m>>n>>r; + long long s = m+n+r; + cout<