Cod sursa(job #1487003)
Utilizator | Data | 15 septembrie 2015 22:00:29 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.35 kb |
//
// main.cpp
// infoarena
//
// Created by Sebastian Dobrincu on 15/09/15.
// Copyright (c) 2015 Sebastian Dobrincu. All rights reserved.
//
#include <iostream>
#include <fstream>
using namespace std;
int main(int argc, const char * argv[]) {
fstream f("date.in", ios::in);
int a,b;
f >> a;
f >> b;
cout << a+b;
return 0;
}