Başarılı 
#include<iostream>
using namespace std;
int main()
{
int x, y;
double cevre = 0;
double alan = 0;
cout << "DIKDORTGENIN GENISLIK DEGERINI GIRINIZ: ";
cin >> x;
cout << "DIKDORTGENIN YUKSEKLIK DEGERINI GIRINIZ: ";
cin >> y;
cevre = 2 * (x + y);
alan = x*y;
cout << endl;
cout << endl;
cout << "DIKDORGENIN CEVRESI = " << cevre << endl;
cout << "DIKDORGENIN ALANI = " << alan << endl;
cin.get();
cin.get();
return 0;
}