Skip to content
This repository has been archived by the owner on Oct 23, 2018. It is now read-only.

Commit

Permalink
Merge pull request #3 from ani37/ani37-patch-3
Browse files Browse the repository at this point in the history
Update and rename format for coding to format for codjam
  • Loading branch information
ani37 authored Oct 15, 2018
2 parents 89b6d8b + 77c8564 commit 0e7fc82
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions C++/format for codjam
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
#include <bits/stdc++.h>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <cstring>
#include <chrono>
#include <complex>
#define endl "\n"
#define ll long long int
#define vi vector<int>
#define vll vector<ll>
#define vvi vector < vi >
#define pii pair<int,int>
#define pll pair<long long, long long>
#define mod 1000000007
#define inf 1000000000000000001;
#define all(c) c.begin(),c.end()
#define mp(x,y) make_pair(x,y)
#define mem(a,val) memset(a,val,sizeof(a))
#define eb emplace_back
#define f first
#define s second

using namespace std;
int main()
{
ifstream fin;
ofstream fout;
fin.open("input");
fout.open("output");

int T;
fin>>T;
for(int t=1;t<=T;t++)
{
ll ans=0;

cout<<"Case #"<<t<<": "<<ans<<endl;
}

return 0;
}

0 comments on commit 0e7fc82

Please sign in to comment.