#include <iostream>
using namespace std;

int main () {
    int u = 100;
    int y = 10;
    int t = u / y ;// DIVISIÓN
    cout << t << endl;
    return 0;
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: