Cod sursa(job #532602)

Utilizator antohieantohie andrei antohie Data 12 februarie 2011 00:22:34
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.24 kb
#include<iostream>
#include<math.h>
#include<fstream>
using namespace std;
ifstream in("adunare.in");
ofstream out("adunare.out");
int main (void)
{
       int a,b,s;
       in>>a>>b;
       s=a+b;
       out<<s;
       return 0;
}