eolymp
bolt
Try our new interface for solving problems
Problems

Polyhedra

published at 5/26/22, 7:25:52 pm

helli atinqaqa

published at 6/13/22, 1:33:27 pm

yarim kalan sigara

published at 4/2/24, 11:52:41 am

include <iostream>

using namespace std;

int main() { int t; // Testlərin sayı cin >> t; while (t--) { int V, E; cin >> V >> E; // Təpələrin və tillərin sayını oxu // Üzlərin sayını hesabla və çap et int F = E - V + 2; cout << F << endl; } return 0; }

published at 4/3/24, 7:10:48 pm

include <iostream>

using namespace std;

int main () { int t; cin >> t; while (t--) { int V, E; cin >> V >> E; int F = E - V + 2; cout << F << endl; } return 0; }//AYXAN113