#include
using namespace std; int main () { int x = 10; int y = 20; int z = x + y; cout << z; return 0; }
30