#include <iostream>
using namespace std;
int main () {
auto x = 5; // x is automatically treated as int
cout << x;
return 0;
}