➤ Problem Link : 1339A. Filling Diamonds
✅ C++ Solution :
#include<bits/stdc++.h> using namespace std; #define ll long long int #define pb push_back #define mp make_pair ll m =1000000007; int main() { int t; cin>>t; while(t--) { ll n; cin>>n; cout<<n<<endl; } }
Thank you for your patience reading. If you enjoyed this post, I’d be very grateful if you’d help it spread by emailing it to a friend, or sharing it on Whatsapp or Facebook.
😇Happy Learning!!