Untitled

Anonymous
plain_text
11/10/2022 4:53 PM
164 B
13
Indexable
#include <iostream>
using namespace std;
int main() {
	int A;
	cin >> A;
	cout << A << " ";
	A += 4;
	cout << A;
}
Editor is loading...