Quick actions

cmd+k|ctrl+k

Navigation

Languages

lab4(70)

Snippet info

Language

Cpp

Visibility

public

Author

andrusus.korotkovus

Created

2018-10-15T19:42:17Z

Updated

2018-10-15T19:52:01Z

#include <iostream>
using namespace std;

int main() {
    int a, b, c, d, S1, S2;
    float n;
    cin>>a>>b>>c>>d;
    S1 = a*b;
    S2 = c*d;
    n = S1/S2;
    cout << n;
}
INFO