C++22

PHOTO EMBED

Sat Sep 17 2022 07:57:03 GMT+0000 (Coordinated Universal Time)

Saved by @kodekutulisanku #c++

#include <iostream>
using namespace std;
int main()
{
  void a = 10, b = 10;
  int c;
  c = a + b;
  cout << c;
  return 0;
}
content_copyCOPY