Declare 2 integer variables and initialize their values as 20 and 10.
#include <iostream> using namespace std; int main() { int a = 20, b = 10; cout << a << " " << b; return 0; }