Cod sursa(job #703552)
Utilizator | Data | 2 martie 2012 12:50:01 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.27 kb |
#include <fstream>
#include <iostream>
#include <time.h>
using namespace std;
int main()
{
ifstream in("adunare.in");
ofstream out("adunare.out");
int a,b,c;
in>>a>>b;
c=a+b;
out<<c;
out.close();
cout<<(double)clock()/CLOCKS_PER_SEC;
return 0;
}