Cod sursa(job #2686145)

Utilizator ionatan00Creta Ionatan ionatan00 Data 18 decembrie 2020 16:33:12
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.6 kb
#include <iostream>
using namespace std;

int main() {

    int a = 2 ;
    int b = 3 ;
    cout << a + b ;


    return 0;
}


/*if (A < B && B < C ){
        cout << A<< " " << B << " " << C;
    }
    if (A < B && C < B ){
        cout << A << " " << C << " " << B ;
    }/*
    if (B < A && A < C) {
        cout << B << " " << A << " " << C;
    }
    if (B < A && C < A) {
        cout << B << " " << C << " " << A ;
    }

    if (C < A && C < B) {
        cout << C << " " << A << " " << B ;
    }
    if (C < A && B < C) {
        cout << C << " " << B << " " << A;
    }*/