Submission

Status:

PPPPPPPPPP

Subtask/Task Score:

100/100

Score: 100

User: NongUnus

Problemset: Breakfast

Language: cpp

Time: 0.003 second

Submitted On: 2025-10-17 22:32:00

#include <bits/stdc++.h>
using namespace std;
int main() {
    ios::sync_with_stdio(0); cin.tie(0);
    int a, b, c; cin >> a >> b >> c;
    cout << a + b + c <<'\n';
    return 0;
}