Horje
faster solutions Code Example
faster solutions
#include <bits/stdc++.h>
using namespace std;

#define ll long long
ll ans = 0;

void solve(){
	
    cout << ans << "\n";
}

int main() {
	ios::sync_with_stdio(0);
	cin.tie(0); cout.tie(0);

	int t, i=1;
	cin >> t;
	while(t--) {
		cout << "Case #" << i << ": ";
		solve();
		++i;
	}
}




Cpp

Related
Cout C++ Code Example Cout C++ Code Example
c++ getline Code Example c++ getline Code Example
linq select where string equals "String" Code Example linq select where string equals "String" Code Example
Patrick and Shopping codeforces in c++ Code Example Patrick and Shopping codeforces in c++ Code Example
c++ addition Code Example c++ addition Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11