Good afternoon, I am starting with codelite and when executing the code that I attached, the codelite terminal fails and does not react, I mean, it asks you for the numbers, I type 23 for example, I press enter, I type 56 and it returns 23 6. In other cases it stays waiting and no matter how much I press enter it does nothing.
If in settings I choose gnome terminal, it works correctly.
It also works fine if I run it from the OS terminal.
So I wanted to know if I have something misconfigured or if it is a system or codelite terminal error.
Thank you so much.
Code: Select all
#include <iostream>
using namespace std;
int main() {
int a, b;
cout << "escribe dos numeros: ";
cin >> a >> b;
cout << endl << a << " " << b;
}