Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!
#include <iostream>using namespace std;int function(int x);int main(){ int x; function(x); return 0;}int function(int x){ cin>>x; return x}