Cod sursa(job #1812620)
Utilizator | Data | 22 noiembrie 2016 11:22:13 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
// ab1.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <iostream>
using namespace std;
int main()
{
int a = 3, b = 5;
cout << a + b;
return 0;
}