Untitled

Anonymous
plain_text
11/10/2022 4:58 PM
196 B
12
Indexable
#include <iostream>
using namespace std;
int main()
{
	int a = 2, b = 3;
	if (a + b == 5) cout << " a + b = 5 :)";
	else cout << "erorr";
}
Editor is loading...