Untitled

 avatar
unknown
plain_text
2 years ago
791 B
5
Indexable
// ConsoleApplication1.cpp : Этот файл содержит функцию "main". Здесь начинается и заканчивается выполнение программы.
//

#include <iostream>
using namespace std;
int main()
{
    /*
    описать кота 
    возраст
    вес
    длина хвоста
    имя(одна буква)
*/
   
    int age = 2;
    float weight;
    int lenght = 16;
    weight = 0.6F;
    char name = '☺';
    
   /*
    // console input
        cout << "Hello iNput cat date:\n";
        cin >> lenght >> weight >> name;
        cout << "age" << age << "\n";
        
        */
        int a, b;
        cin >> a >> b;
        int c;
        c = a + b;
        cout << c;

 
};

Editor is loading...