gf

Anonymous
c_cpp
11/09/2023 5:05 PM
216 B
37
Indexable
#include <iostream>
using namespace std;

int main()
{
	int a, b;
	cin >> a >> b;
	while (a <= b)
	{
		if (a % 2 == 0) cout << a << endl;
		a++;
	}
}
Editor is loading...