🟢 Վարժություն 10

Ի՞նչ կտպվի էկրանին:
#include <iostream>
 
int main() {
  int a = 10;
  int b = a;
  a = 2000;
  std::cout << b << std::endl;  
}
 
To check your solution you need to sign in
Sign in to continue